Beispiel #1
0
 public BigInteger xor(BigInteger val)
 {
     return(Logical.xor(this, val));
 }
Beispiel #2
0
 public BigInteger andNot(BigInteger val)
 {
     return(Logical.andNot(this, val));
 }
Beispiel #3
0
 public BigInteger not()
 {
     return(Logical.not(this));
 }