15 implementations of IsPositiveInfinity
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
653static bool INumberBase<byte>.IsPositiveInfinity(byte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1533static bool INumberBase<char>.IsPositiveInfinity(char value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1411static bool INumberBase<decimal>.IsPositiveInfinity(decimal value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1381static bool INumberBase<Int128>.IsPositiveInfinity(Int128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
753static bool INumberBase<short>.IsPositiveInfinity(short value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
795static bool INumberBase<int>.IsPositiveInfinity(int value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
792static bool INumberBase<long>.IsPositiveInfinity(long value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
815static bool INumberBase<nint>.IsPositiveInfinity(nint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
732static bool INumberBase<sbyte>.IsPositiveInfinity(sbyte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1578static bool INumberBase<UInt128>.IsPositiveInfinity(UInt128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
658static bool INumberBase<ushort>.IsPositiveInfinity(ushort value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
723static bool INumberBase<uint>.IsPositiveInfinity(uint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
730static bool INumberBase<ulong>.IsPositiveInfinity(ulong value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
729static bool INumberBase<nuint>.IsPositiveInfinity(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4230static bool INumberBase<BigInteger>.IsPositiveInfinity(BigInteger value) => false;
23 references to IsPositiveInfinity
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsPositiveInfinity.cs (1)
55public static bool Invoke(T x) => T.IsPositiveInfinity(x);
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
652/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1532/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1410/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1380/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
752/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
794/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
791/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
814/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
731/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1577/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
657/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
722/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
729/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
728/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System.Private.Windows.Core.TestUtilities (3)
ComparisonHelpers.cs (3)
42if (T.IsPositiveInfinity(x)) 44return T.IsPositiveInfinity(y); 46else if (T.IsPositiveInfinity(y))
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (1)
4229/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System\Numerics\Complex.cs (1)
637/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System\Numerics\Complex.Generic.cs (2)
1299/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" /> 1305return (value.m_imaginary == T.Zero) && T.IsPositiveInfinity(value.m_real);
System.Text.Json (1)
System\Text\Json\Serialization\Converters\Value\Ieee754FloatingPointConverter.cs (1)
191else if (T.IsPositiveInfinity(value))