diff options
| author | gingerBill <bill@gingerbill.org> | 2019-11-10 18:51:21 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2019-11-10 18:51:21 +0000 |
| commit | 536cceeef9144b59a9e335d2bbb151ead3f7bdba (patch) | |
| tree | efb5f7d099613093a8920361c5be9f717da939a7 /core | |
| parent | 098684a6fe037a6ce3be948343495f1714bf26bb (diff) | |
Add `intrinsics.type_is_unsigned`
Diffstat (limited to 'core')
| -rw-r--r-- | core/intrinsics/intrinsics.odin | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/intrinsics/intrinsics.odin b/core/intrinsics/intrinsics.odin index 8ee12554c..4412c6580 100644 --- a/core/intrinsics/intrinsics.odin +++ b/core/intrinsics/intrinsics.odin @@ -95,6 +95,7 @@ type_is_any :: proc($T: typeid) -> bool --- type_is_endian_little :: proc($T: typeid) -> bool --- type_is_endian_big :: proc($T: typeid) -> bool --- +type_is_unsigned :: proc($T: typeid) -> bool --- type_is_numeric :: proc($T: typeid) -> bool --- type_is_ordered :: proc($T: typeid) -> bool --- type_is_ordered_numeric :: proc($T: typeid) -> bool --- |