Constants§
- BOOL
- types: 0b[type]_[length_mod] length = if length_mod == 0 then 0 else 2 << (length_mod -1) . eg: BOOL,I8,U8 = 0 I16,U16 = 2 << (1-1) = 2 I32,U32,F32 = 2 << (2-1) = 4 I64,U64,F64 = 2 << (3-1) = 8
- BYTES
- F32
- F64
- I8
- I16
- I32
- I64
- STRING
- U8
- U16
- U32
- U64