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

498 {
499 ulong value = BitConverter.DoubleToUInt64Bits(left) & BitConverter.DoubleToUInt64Bits(right);
500 return BitConverter.UInt64BitsToDouble(value);
501 }

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