BigInteger.andNot
Class Overview | Class Members |
This Package |
All Packages
public BigInteger andNot( BigInteger val )
Description
Returns a BigInteger whose value is (this & ~val). This method,
which is equivalent to and(val.not()), is provided as a convenience
for masking operations. (This method returns a negative number iff
this is negative and val is positive.)