-
Notifications
You must be signed in to change notification settings - Fork 0
Literals
Creepsky edited this page Oct 13, 2018
·
1 revision
auto text = "this is an example";
Type | Alias | Bytes | Signed | Min Value | Max Value |
---|---|---|---|---|---|
i8 | -- | 1 | ✔️ | -128 | 127 |
i16 | short | 2 | ✔️ | -32,768 | 32,767 |
i32 | int | 4 | ✔️ | -2,147,483,648 | 2,147,483,647 |
i64 | long | 8 | ✔️ | -9,223,372,036,854,775,808 | 4,294,967,295 |
u8 | byte | 1 | ✖️ | 0 | 255 |
u16 | ushort | 2 | ✖️ | 0 | 65,535 |
u32 | uint | 4 | ✖️ | 0 | 2,147,483,647 |
u64 | ulong | 8 | ✖️ | 0 | 18,446,744,073,709,551,615 |
usize | -- | 4 / 8 | ✖️ | 0 | u32 / u64 |
Type | Alias | Bytes |
---|---|---|
f32 | float | 4 |
f64 | double | 8 |