3 references to NegativeInfinityValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (3)
80
public static Decimal32 NegativeInfinity => new Decimal32(
NegativeInfinityValue
);
1142
public static bool IsNegativeInfinity(Decimal32 value) => (value._value & (SignMask | NaNMask)) ==
NegativeInfinityValue
;
1781
static uint IDecimalIeee754ParseAndFormatInfo<Decimal32, uint>.NegativeInfinity =>
NegativeInfinityValue
;