minFinite constant

int const minFinite

The minimum 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 minFinite = -0x8000000000000000;