15 implementations of IsNegativeInfinity
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
641static bool INumberBase<byte>.IsNegativeInfinity(byte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1521static bool INumberBase<char>.IsNegativeInfinity(char value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1395static bool INumberBase<decimal>.IsNegativeInfinity(decimal value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1369static bool INumberBase<Int128>.IsNegativeInfinity(Int128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
741static bool INumberBase<short>.IsNegativeInfinity(short value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
783static bool INumberBase<int>.IsNegativeInfinity(int value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
780static bool INumberBase<long>.IsNegativeInfinity(long value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
803static bool INumberBase<nint>.IsNegativeInfinity(nint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
720static bool INumberBase<sbyte>.IsNegativeInfinity(sbyte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1566static bool INumberBase<UInt128>.IsNegativeInfinity(UInt128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
646static bool INumberBase<ushort>.IsNegativeInfinity(ushort value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
711static bool INumberBase<uint>.IsNegativeInfinity(uint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
718static bool INumberBase<ulong>.IsNegativeInfinity(ulong value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
717static bool INumberBase<nuint>.IsNegativeInfinity(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4210static bool INumberBase<BigInteger>.IsNegativeInfinity(BigInteger value) => false;
23 references to IsNegativeInfinity
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsNegativeInfinity.cs (1)
55public static bool Invoke(T x) => T.IsNegativeInfinity(x);
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
640/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1520/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1394/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1368/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
740/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
782/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
779/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
802/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
719/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1565/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
645/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
710/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
717/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
716/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
System.Private.Windows.Core.TestUtilities (3)
ComparisonHelpers.cs (3)
33if (T.IsNegativeInfinity(x)) 35return T.IsNegativeInfinity(y); 37else if (T.IsNegativeInfinity(y))
System.Runtime.Numerics (4)
System\Numerics\BigInteger.cs (1)
4209/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
System\Numerics\Complex.cs (1)
606/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" />
System\Numerics\Complex.Generic.cs (2)
1268/// <inheritdoc cref="INumberBase{TSelf}.IsNegativeInfinity(TSelf)" /> 1274return (value.m_imaginary == T.Zero) && T.IsNegativeInfinity(value.m_real);
System.Text.Json (1)
System\Text\Json\Serialization\Converters\Value\Ieee754FloatingPointConverter.cs (1)
195else if (T.IsNegativeInfinity(value))