IntAllows storing a number in range from -2147483648 to 2147483647.
obj Int {
}
Int.str()Returns a string representation.
fn Int.str () str
I8Allows storing a scientific number in range from -128 to 127.
obj I8 {
}
I8.str()Returns a string representation.
fn I8.str () str
I16Allows storing a scientific number in range from -32768 to 32767.
obj I16 {
}
I16.str()Returns a string representation.
fn I16.str () str
I32Allows storing a scientific number in range from -2147483648 to 2147483647.
obj I32 {
}
I32.str()Returns a string representation.
fn I32.str () str
I64Allows storing a scientific number in range from -9223372036854775808 to 9223372036854775807.
obj I64 {
}
I64.str()Returns a string representation.
fn I64.str () str
U8Allows storing a scientific number in range from 0 to 255.
obj U8 {
}
U8.str()Returns a string representation.
fn U8.str () str
U16Allows storing a scientific number in range from 0 to 65535.
obj U16 {
}
U16.str()Returns a string representation.
fn U16.str () str
U32Allows storing a scientific number in range from 0 to 4294967295.
obj U32 {
}
U32.str()Returns a string representation.
fn U32.str () str
U64Allows storing a scientific number in range from 0 to 18446744073709551615.
obj U64 {
}
U64.str()Returns a string representation.
fn U64.str () str