Integer Types¶
There are three integer types available:
I16. Range:[32768, 32767]I32. Range:[-2147483648, 2147483647]I64. Range:[-9223372036854775808, 9223372036854775807]
Usage¶
You can initialize any integer type from Python value, which supports int() conversion.
Accessing the value is possible via .value property.