Example #1
0
 public unsafe static Int256 operator |(Int256 left, Int256 right)
 {
     BigIntArithmetic.OR(&left.low, &right.low, Size64);
     return(left);
 }
Example #2
0
 public unsafe static UInt128 operator |(UInt128 left, UInt128 right)
 {
     BigIntArithmetic.OR(&left.low, &right.low, Size64);
     return(left);
 }