BitwiseAnd() private method

private BitwiseAnd ( BigInteger x, BigInteger y ) : BigInteger
x Microsoft.Scripting.Math.BigInteger
y Microsoft.Scripting.Math.BigInteger
return Microsoft.Scripting.Math.BigInteger
示例#1
0
 public static BigInteger BitwiseAnd(bool x, BigInteger y)
 {
     return(BigIntegerOps.BitwiseAnd(x ? 1 : 0, y));
 }
示例#2
0
 public static BigInteger BitwiseAnd(BigInteger x, bool y)
 {
     return(BigIntegerOps.BitwiseAnd(y ? 1 : 0, x));
 }