15 implementations of IsPositiveInfinity
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
653
static bool INumberBase<byte>.
IsPositiveInfinity
(byte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1533
static bool INumberBase<char>.
IsPositiveInfinity
(char value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1411
static bool INumberBase<decimal>.
IsPositiveInfinity
(decimal value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1381
static bool INumberBase<Int128>.
IsPositiveInfinity
(Int128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
753
static bool INumberBase<short>.
IsPositiveInfinity
(short value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
795
static bool INumberBase<int>.
IsPositiveInfinity
(int value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
792
static bool INumberBase<long>.
IsPositiveInfinity
(long value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
815
static bool INumberBase<nint>.
IsPositiveInfinity
(nint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
732
static bool INumberBase<sbyte>.
IsPositiveInfinity
(sbyte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1578
static bool INumberBase<UInt128>.
IsPositiveInfinity
(UInt128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
658
static bool INumberBase<ushort>.
IsPositiveInfinity
(ushort value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
723
static bool INumberBase<uint>.
IsPositiveInfinity
(uint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
730
static bool INumberBase<ulong>.
IsPositiveInfinity
(ulong value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
729
static bool INumberBase<nuint>.
IsPositiveInfinity
(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4230
static bool INumberBase<BigInteger>.
IsPositiveInfinity
(BigInteger value) => false;
23 references to IsPositiveInfinity
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsPositiveInfinity.cs (1)
55
public 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)
42
if (T.
IsPositiveInfinity
(x))
44
return T.
IsPositiveInfinity
(y);
46
else 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)" />
1305
return (value.m_imaginary == T.Zero) && T.
IsPositiveInfinity
(value.m_real);
System.Text.Json (1)
System\Text\Json\Serialization\Converters\Value\Ieee754FloatingPointConverter.cs (1)
191
else if (T.
IsPositiveInfinity
(value))