unsigned32 static method
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;
}
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;
}