3 references to PositiveInfinityValue
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (3)
72
public static Decimal64 PositiveInfinity => new Decimal64(
PositiveInfinityValue
);
1145
public static bool IsPositiveInfinity(Decimal64 value) => (value._value & (SignMask | NaNMask)) ==
PositiveInfinityValue
;
1773
static ulong IDecimalIeee754ParseAndFormatInfo<Decimal64, ulong>.PositiveInfinity =>
PositiveInfinityValue
;