maxFinite constant

int const maxFinite

The maximum finite value for an int (on native platforms) On web platforms, int values are represented as 64-bit floating-point numbers. Bitwise operations on the web operate on 32 bit integers.

Implementation

static const int maxFinite = 0x7FFFFFFFFFFFFFFF;