Table of Contents

Numeric limits

ACSUtils defines constants that represent minimum and maximum values that can be stored in memory blocks (variables) of various sizes.

32-bit

ACS int is a signed 32-bit integer. Unsigned ints don't exist in ACS, so UINT_MAX can't be expressed.

16-bit

16-bit integers are also known as shorts.

8-bit

8-bit integers are also known as bytes.

fixed

Fixed-point numbers are 32-bit integers and have the same limits as int (INT_MIN and INT_MAX). But to enable strict typing, there are separate limit constants for fixed: