12 references to LessThanDecimalIeee754
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Number.DecimalIeee754.cs (9)
324/// <inheritdoc cref="LessThanDecimalIeee754{TDecimal, TValue}(TValue, TValue)"/> 333/// <inheritdoc cref="LessThanDecimalIeee754{TDecimal, TValue}(TValue, TValue)"/> 342/// <inheritdoc cref="LessThanDecimalIeee754{TDecimal, TValue}(TValue, TValue)"/> 3243if (LessThanDecimalIeee754<TDecimal, TValue>(ax, ay) || TDecimal.IsNaN(ax)) 3283if (LessThanDecimalIeee754<TDecimal, TValue>(ax, ay) || TDecimal.IsNaN(ay)) 3338return LessThanDecimalIeee754<TDecimal, TValue>(x, y) ? x : y; 3355return CanonicalizeIfNaN<TDecimal, TValue>(LessThanDecimalIeee754<TDecimal, TValue>(x, y) ? x : y); 3366return LessThanDecimalIeee754<TDecimal, TValue>(y, x) ? x : y; 3383return LessThanDecimalIeee754<TDecimal, TValue>(x, y) ? x : y;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal128.cs (1)
721return Number.LessThanDecimalIeee754<Decimal128, UInt128>(new UInt128(left._upper, left._lower), new UInt128(right._upper, right._lower));
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal32.cs (1)
732return Number.LessThanDecimalIeee754<Decimal32, uint>(left._value, right._value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Decimal64.cs (1)
725return Number.LessThanDecimalIeee754<Decimal64, ulong>(left._value, right._value);