Big Integer.Bitwise Or Operator
Computes the bitwise and of two BigInteger values.
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public static BigInteger operator |(
BigInteger left,
BigInteger right
)
Parameters
- left BigInteger
- The first number.
- right BigInteger
- The second number.
Return Value
BigIntegerImplements
IBitwiseOperators<TSelf, TOther, TResult>.BitwiseOr(TSelf, TOther)Remarks
A BigInteger whose bits are the bits of left AND-ed with the bits of right.