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 511 of file Double.cs.

512 {
513 ulong value = BitConverter.DoubleToUInt64Bits(left) ^ BitConverter.DoubleToUInt64Bits(right);
514 return BitConverter.UInt64BitsToDouble(value);
515 }

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