Int32 constructor

Int32([
  1. int i = 0
])

Constructs an Int32 from an int. Only the low 32 bits of the input are used.

Implementation

Int32([int i = 0]) : _i = (i & 0x7fffffff) - (i & 0x80000000);