3 references to NegativeInfinityValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (3)
75
public static Decimal64 NegativeInfinity => new Decimal64(
NegativeInfinityValue
);
1135
public static bool IsNegativeInfinity(Decimal64 value) => (value._value & (SignMask | NaNMask)) ==
NegativeInfinityValue
;
1775
static ulong IDecimalIeee754ParseAndFormatInfo<Decimal64, ulong>.NegativeInfinity =>
NegativeInfinityValue
;