Companion

object Companion

Properties

Link copied to clipboard
val bitwiseAnd: L2_BIT_LOGIC_OP

The L2Operation for computing the bit-wise Int.and of two Ints.

Link copied to clipboard
val bitwiseOr: L2_BIT_LOGIC_OP

The L2Operation for computing the bit-wise Int.or of two Ints.

Link copied to clipboard
val bitwiseSignedShiftRight: L2_BIT_LOGIC_OP

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).

Link copied to clipboard
val bitwiseUnsignedShiftRight: L2_BIT_LOGIC_OP

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.

Link copied to clipboard
val bitwiseXor: L2_BIT_LOGIC_OP

The L2Operation for computing the bit-wise Int.xor of two Ints.

Link copied to clipboard
val wrappedAdd: L2_BIT_LOGIC_OP

The L2Operation for computing the bit-wise sum of two Ints, wrapping around with 2's complement semantics as needed.

Link copied to clipboard
val wrappedDivide: L2_BIT_LOGIC_OP

The L2Operation for computing the ratio of two Ints (i.e., intA / intB), wrapping around with 2's complement semantics as needed.

Link copied to clipboard
val wrappedMultiply: L2_BIT_LOGIC_OP

The L2Operation for computing the product of two Ints, wrapping around with 2's complement semantics as needed.

Link copied to clipboard
val wrappedSubtract: L2_BIT_LOGIC_OP

The L2Operation for computing the difference of two Ints (the first minus the second), wrapping around with 2's complement semantics as needed.