unsigned32 static method

dynamic unsigned32(
  1. int n1
)

Implementation

static unsigned32(
    int n1) // returns a 32-bits unsiged integer from an operand to which applied a bit operator.
{
  return n1 < 0 ? (n1 ^ upperMask) + upperMask : n1;
}