Exemplo n.º 1
0
 public static UBigInt operator ^(UBigInt u, UBigInt v)
 {
     return(new UBigInt(EngineObject.ExclusiveOr(u.Handle, v.Handle)));
 }
Exemplo n.º 2
0
 public UBigInt ExclusiveOr(UBigInt v)
 {
     return(new UBigInt(EngineObject.ExclusiveOr(Handle, v.Handle)));
 }
Exemplo n.º 3
0
 public static BigInt operator ^(UInt64 u, BigInt v)
 {
     return(new BigInt(EngineObject.ExclusiveOr(u, v.Handle)));
 }
Exemplo n.º 4
0
 public static BigInt operator ^(BigInt u, UInt32 v)
 {
     return(new BigInt(EngineObject.ExclusiveOr(u.Handle, v)));
 }
Exemplo n.º 5
0
 public BigInt ExclusiveOr(UInt64 v)
 {
     return(new BigInt(EngineObject.ExclusiveOr(Handle, v)));
 }