pnuts.lang
Class BinaryOperator.Or
java.lang.Object
pnuts.lang.BinaryOperator
pnuts.lang.BinaryOperator.Or
- All Implemented Interfaces:
- java.io.Serializable
- Enclosing class:
- BinaryOperator
public static class BinaryOperator.Or
- extends BinaryOperator
The default implementation of | operator (bitwise OR)
- See Also:
- Serialized Form
Nested classes/interfaces inherited from class pnuts.lang.BinaryOperator |
BinaryOperator.Add, BinaryOperator.And, BinaryOperator.Divide, BinaryOperator.Mod, BinaryOperator.Multiply, BinaryOperator.Or, BinaryOperator.ShiftArithmetic, BinaryOperator.ShiftLeft, BinaryOperator.ShiftRight, BinaryOperator.Subtract, BinaryOperator.Xor |
Method Summary |
java.lang.Object |
op_bint(java.math.BigInteger b1,
java.math.BigInteger b2)
Operation on BigInteger's |
java.lang.Object |
op_boolean(boolean b1,
boolean b2)
Operation on booleans |
java.lang.Object |
op_int(int i1,
int i2)
Operation on ints |
java.lang.Object |
op_long(long d1,
long d2)
Operation on longs |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
BinaryOperator.Or
public BinaryOperator.Or()
op_int
public java.lang.Object op_int(int i1,
int i2)
- Description copied from class:
BinaryOperator
- Operation on ints
- Overrides:
op_int
in class BinaryOperator
op_long
public java.lang.Object op_long(long d1,
long d2)
- Description copied from class:
BinaryOperator
- Operation on longs
- Overrides:
op_long
in class BinaryOperator
op_bint
public java.lang.Object op_bint(java.math.BigInteger b1,
java.math.BigInteger b2)
- Description copied from class:
BinaryOperator
- Operation on BigInteger's
- Overrides:
op_bint
in class BinaryOperator
op_boolean
public java.lang.Object op_boolean(boolean b1,
boolean b2)
- Description copied from class:
BinaryOperator
- Operation on booleans
- Overrides:
op_boolean
in class BinaryOperator