Integers type
The Integer Types module provides tools for working with signed and unsigned integers of various sizes in Nelson.
These types are particularly useful for efficiently storing and processing large datasets, such as images or large numeric arrays.
The module supports conversions between integer formats and provides access to the minimum and maximum values representable for each integer type, ensuring safe and precise integer arithmetic.
Functions
int16 - Converts to 16-bit signed integer.
int32 - Converts to 32-bit signed integer.
int64 - Converts to 64-bit signed integer.
int8 - Converts to 8-bit signed integer.
intmax - Return the largest integer that can be represented in an integer type.
intmin - Return the smallest integer that can be represented in an integer type.
uint16 - Converts to 16-bit unsigned integer.
uint32 - Converts to 32-bit unsigned integer.
uint64 - Converts to 64-bit unsigned integer.
uint8 - Converts to 8-bit unsigned integer.
Last updated
Was this helpful?