3 references to NegativeInfinityValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (3)
87
public static Decimal128 NegativeInfinity => new Decimal128(
NegativeInfinityValue
);
1131
public static bool IsNegativeInfinity(Decimal128 value) => (value._upper & (SignMaskUpper | NaNMaskUpper)) ==
NegativeInfinityValue
.Upper;
1813
static UInt128 IDecimalIeee754ParseAndFormatInfo<Decimal128, UInt128>.NegativeInfinity =>
NegativeInfinityValue
;