Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ operator|() [1/2]

static double IBitwiseOperators< double, double, double >. System.Double.operator| ( double left,
double right )
inlinestatic

Definition at line 504 of file Double.cs.

505 {
506 ulong value = BitConverter.DoubleToUInt64Bits(left) | BitConverter.DoubleToUInt64Bits(right);
507 return BitConverter.UInt64BitsToDouble(value);
508 }

References System.BitConverter.DoubleToUInt64Bits(), System.BitConverter.UInt64BitsToDouble(), and System.value.