BitwiseOr() private method

private BitwiseOr ( 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 BitwiseOr(bool x, BigInteger y)
 {
     return(BigIntegerOps.BitwiseOr(x ? 1 : 0, y));
 }
示例#2
0
 public static BigInteger BitwiseOr(BigInteger x, bool y)
 {
     return(BigIntegerOps.BitwiseOr(y ? 1 : 0, x));
 }