Companion
Properties
The L2Operation for computing the bit-wise Int.and of two Ints.
The L2Operation for computing the bit-wise Int.or of two Ints.
The L2Operation for shifting an Int rightward by the specified number of bit positions, respecting its sign. The second operand should be between 0 and 31 (otherwise only the bottom five bits will be used).
The L2Operation for shifting an Int rightward by the specified number of bit positions, treating it as unsigned. The second operand should be between 0 and 31 (otherwise only the bottom five bits will be used). The result can be negative if the first argument is negative and the shift is zero.
The L2Operation for computing the bit-wise Int.xor of two Ints.
The L2Operation for computing the bit-wise sum of two Ints, wrapping around with 2's complement semantics as needed.
The L2Operation for computing the ratio of two Ints (i.e., intA / intB), wrapping around with 2's complement semantics as needed.
The L2Operation for computing the product of two Ints, wrapping around with 2's complement semantics as needed.
The L2Operation for computing the difference of two Ints (the first minus the second), wrapping around with 2's complement semantics as needed.