Type Alias molt_forked::types::MoltInt
source ยท pub type MoltInt = i64;Expand description
The standard integer type for Molt code.
The interpreter uses this type internally for all Molt integer values.
The primary reason for defining this as a type alias is future-proofing: at
some point we may wish to replace MoltInt with a more powerful type that
supports BigNums, or switch to i128.