hare

[hare] The Hare programming language
git clone https://git.torresjrjr.com/hare.git
Log | Files | Refs | README | LICENSE

commit 85dbdf6d332ac8dbbc69c7188b5f1c62769affff
parent 2052ee5eabfe626462e023b21348b664869b8768
Author: Sebastian <sebastian@sebsite.pw>
Date:   Sun, 10 Mar 2024 20:47:25 -0400

types: note where uintptr is excluded

Diffstat:
Mtypes/classes.ha | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/types/classes.ha b/types/classes.ha @@ -7,13 +7,13 @@ export type signed = (i8 | i16 | i32 | i64 | int); // A tagged union of all unsigned integer types, excluding uintptr. export type unsigned = (u8 | u16 | u32 | u64 | uint | size); -// A tagged union of all integer types. +// A tagged union of all integer types, excluding uintptr. export type integer = (...signed | ...unsigned); // A tagged union of all floating point numeric types. export type floating = (f32 | f64); -// A tagged union of all numeric types. +// A tagged union of all numeric types, excluding uintptr. export type numeric = (...integer | ...floating); // A type representing the internal structure of strings, useful for low-level