diff options
| author | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 09:56:30 +0100 |
|---|---|---|
| committer | gingerBill <gingerBill@users.noreply.github.com> | 2025-10-09 09:56:30 +0100 |
| commit | 7870e6d68b400cb40dca7d7ac8843bb731ea666a (patch) | |
| tree | e00f20b580aee8939298cccbe3457b8ba644e9c9 /base | |
| parent | cadac43f14bef9955beafe861b109f92dd943e6f (diff) | |
Update `intrinsics.odin`
Diffstat (limited to 'base')
| -rw-r--r-- | base/intrinsics/intrinsics.odin | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/base/intrinsics/intrinsics.odin b/base/intrinsics/intrinsics.odin index dd508180d..d2af85619 100644 --- a/base/intrinsics/intrinsics.odin +++ b/base/intrinsics/intrinsics.odin @@ -138,10 +138,13 @@ type_is_rune :: proc($T: typeid) -> bool --- type_is_float :: proc($T: typeid) -> bool --- type_is_complex :: proc($T: typeid) -> bool --- type_is_quaternion :: proc($T: typeid) -> bool --- -type_is_string :: proc($T: typeid) -> bool --- type_is_typeid :: proc($T: typeid) -> bool --- type_is_any :: proc($T: typeid) -> bool --- +type_is_string :: proc($T: typeid) -> bool --- type_is_string16 :: proc($T: typeid) -> bool --- +type_is_cstring :: proc($T: typeid) -> bool --- +type_is_cstring16 :: proc($T: typeid) -> bool --- + type_is_endian_platform :: proc($T: typeid) -> bool --- type_is_endian_little :: proc($T: typeid) -> bool --- |