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 value)
inlinestatic

Definition at line 518 of file Double.cs.

519 {
520 ulong value2 = ~BitConverter.DoubleToUInt64Bits(value);
521 return BitConverter.UInt64BitsToDouble(value2);
522 }

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