Type alias PODIntValue

PODIntValue: {
    type: "int";
    value: bigint;
}

POD value for constrained integer values intended for comparison and arithmatic manipulation. The constants POD_INT_MIN and POD_INT_MAX specify the legal range.

int values are 64-bit signed values. Note that this is the same range as the two's complement representation of 64-bit signed numbers on most platforms.

Type declaration

  • type: "int"
  • value: bigint

Generated using TypeDoc