15 implementations of IsPositiveInfinity
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
658static bool INumberBase<byte>.IsPositiveInfinity(byte value) => false;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1479static bool INumberBase<char>.IsPositiveInfinity(char value) => false;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1438static bool INumberBase<decimal>.IsPositiveInfinity(decimal value) => false;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1395static bool INumberBase<Int128>.IsPositiveInfinity(Int128 value) => false;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
772static bool INumberBase<short>.IsPositiveInfinity(short value) => false;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
813static bool INumberBase<int>.IsPositiveInfinity(int value) => false;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
810static bool INumberBase<long>.IsPositiveInfinity(long value) => false;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
805static bool INumberBase<nint>.IsPositiveInfinity(nint value) => false;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
735static bool INumberBase<sbyte>.IsPositiveInfinity(sbyte value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1545static bool INumberBase<UInt128>.IsPositiveInfinity(UInt128 value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
677static bool INumberBase<ushort>.IsPositiveInfinity(ushort value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
716static bool INumberBase<uint>.IsPositiveInfinity(uint value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
715static bool INumberBase<ulong>.IsPositiveInfinity(ulong value) => false;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
718static bool INumberBase<nuint>.IsPositiveInfinity(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4118static bool INumberBase<BigInteger>.IsPositiveInfinity(BigInteger value) => false;
24 references to IsPositiveInfinity
PresentationCore.Tests (3)
FluentAssertions\ComparisonHelpers.cs (3)
41if (T.IsPositiveInfinity(x)) 43return T.IsPositiveInfinity(y); 45else if (T.IsPositiveInfinity(y))
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsPositiveInfinity.cs (1)
59public static bool Invoke(T x) => T.IsPositiveInfinity(x);
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
657/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1478/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1437/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1394/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
771/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
812/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
809/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
804/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
734/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1544/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
676/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
715/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
714/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
717/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System.Private.Windows.Core.TestUtilities (3)
ComparisonHelpers.cs (3)
41if (T.IsPositiveInfinity(x)) 43return T.IsPositiveInfinity(y); 45else if (T.IsPositiveInfinity(y))
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
4117/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System\Numerics\Complex.cs (1)
1052/// <inheritdoc cref="INumberBase{TSelf}.IsPositiveInfinity(TSelf)" />
System.Windows.Forms.Primitives.TestUtilities (1)
Extensions\AssertExtensions.cs (1)
593else if (T.IsPositiveInfinity(value))