15 implementations of IsInfinity
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
634static bool INumberBase<byte>.IsInfinity(byte value) => false;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1455static bool INumberBase<char>.IsInfinity(char value) => false;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1410static bool INumberBase<decimal>.IsInfinity(decimal value) => false;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1371static bool INumberBase<Int128>.IsInfinity(Int128 value) => false;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
748static bool INumberBase<short>.IsInfinity(short value) => false;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
789static bool INumberBase<int>.IsInfinity(int value) => false;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
786static bool INumberBase<long>.IsInfinity(long value) => false;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
781static bool INumberBase<nint>.IsInfinity(nint value) => false;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
711static bool INumberBase<sbyte>.IsInfinity(sbyte value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1521static bool INumberBase<UInt128>.IsInfinity(UInt128 value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
653static bool INumberBase<ushort>.IsInfinity(ushort value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
692static bool INumberBase<uint>.IsInfinity(uint value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
691static bool INumberBase<ulong>.IsInfinity(ulong value) => false;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
694static bool INumberBase<nuint>.IsInfinity(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4077static bool INumberBase<BigInteger>.IsInfinity(BigInteger value) => false;
17 references to IsInfinity
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsInfinity.cs (1)
59public static bool Invoke(T x) => T.IsInfinity(x);
System.Private.CoreLib (15)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
633/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1454/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1409/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1370/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
747/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
788/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
785/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
780/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Numerics\INumberBase.cs (1)
148/// <remarks>This function returning <c>false</c> does not imply that <see cref="IsInfinity(TSelf)" /> will return <c>true</c>. <c>NaN</c> is not finite nor infinite.</remarks>
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
710/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1520/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
652/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
691/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
690/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
693/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4076/// <inheritdoc cref="INumberBase{TSelf}.IsInfinity(TSelf)" />