15 implementations of IsPositiveInfinity
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
659static bool INumberBase<byte>.IsPositiveInfinity(byte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1518static bool INumberBase<char>.IsPositiveInfinity(char value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1417static bool INumberBase<decimal>.IsPositiveInfinity(decimal value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1390static bool INumberBase<Int128>.IsPositiveInfinity(Int128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
766static bool INumberBase<short>.IsPositiveInfinity(short value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
808static bool INumberBase<int>.IsPositiveInfinity(int value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
805static bool INumberBase<long>.IsPositiveInfinity(long value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
818static bool INumberBase<nint>.IsPositiveInfinity(nint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
745static bool INumberBase<sbyte>.IsPositiveInfinity(sbyte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1582static bool INumberBase<UInt128>.IsPositiveInfinity(UInt128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
664static bool INumberBase<ushort>.IsPositiveInfinity(ushort value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
729static bool INumberBase<uint>.IsPositiveInfinity(uint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
736static bool INumberBase<ulong>.IsPositiveInfinity(ulong value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
725static bool INumberBase<nuint>.IsPositiveInfinity(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4038static bool INumberBase<BigInteger>.IsPositiveInfinity(BigInteger value) => false;
20 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)
658/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1517/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1416/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1389/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
765/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
807/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
804/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
817/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
744/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1581/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
663/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
728/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
735/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
724/// <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 (2)
System\Numerics\BigInteger.cs (1)
4037/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System\Numerics\Complex.cs (1)
1060/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />