| java.lang.Object java.math.Logical
Logical | class Logical (Code) | | The library implements some logical operations over
BigInteger . The
operations provided are listed below.
author: Intel Middleware Product Division author: Instituto Tecnologico de Cordoba |
Method Summary | |
static BigInteger | and(BigInteger val, BigInteger that) | static BigInteger | andDiffSigns(BigInteger positive, BigInteger negative) | static BigInteger | andNegative(BigInteger longer, BigInteger shorter) | static BigInteger | andNot(BigInteger val, BigInteger that) | static BigInteger | andNotNegative(BigInteger val, BigInteger that) | static BigInteger | andNotNegativePositive(BigInteger negative, BigInteger positive) | static BigInteger | andNotPositive(BigInteger val, BigInteger that) | static BigInteger | andNotPositiveNegative(BigInteger positive, BigInteger negative) | static BigInteger | andPositive(BigInteger val, BigInteger that) | static BigInteger | not(BigInteger val) | static BigInteger | or(BigInteger val, BigInteger that) | static BigInteger | orDiffSigns(BigInteger positive, BigInteger negative) | static BigInteger | orNegative(BigInteger val, BigInteger that) | static BigInteger | orPositive(BigInteger longer, BigInteger shorter) | static BigInteger | xor(BigInteger val, BigInteger that) | static BigInteger | xorDiffSigns(BigInteger positive, BigInteger negative) | static BigInteger | xorNegative(BigInteger val, BigInteger that) | static BigInteger | xorPositive(BigInteger longer, BigInteger shorter) |
|
|