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