15 implementations of IsSubnormal
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
659static bool INumberBase<byte>.IsSubnormal(byte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1539static bool INumberBase<char>.IsSubnormal(char value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1417static bool INumberBase<decimal>.IsSubnormal(decimal value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1387static bool INumberBase<Int128>.IsSubnormal(Int128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
759static bool INumberBase<short>.IsSubnormal(short value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
801static bool INumberBase<int>.IsSubnormal(int value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
798static bool INumberBase<long>.IsSubnormal(long value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
821static bool INumberBase<nint>.IsSubnormal(nint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
738static bool INumberBase<sbyte>.IsSubnormal(sbyte value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1584static bool INumberBase<UInt128>.IsSubnormal(UInt128 value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
664static bool INumberBase<ushort>.IsSubnormal(ushort value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
729static bool INumberBase<uint>.IsSubnormal(uint value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
736static bool INumberBase<ulong>.IsSubnormal(ulong value) => false;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
735static bool INumberBase<nuint>.IsSubnormal(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4236static bool INumberBase<BigInteger>.IsSubnormal(BigInteger value) => false;
20 references to IsSubnormal
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsSubnormal.cs (1)
55public static bool Invoke(T x) => T.IsSubnormal(x);
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
658/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1538/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1416/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1386/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
758/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
800/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
797/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
820/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
737/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1583/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
663/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
728/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
735/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
734/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
System.Runtime.Numerics (5)
System\Numerics\BigInteger.cs (1)
4235/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
System\Numerics\Complex.cs (1)
649/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
System\Numerics\Complex.Generic.cs (3)
1311/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" /> 1317return T.IsSubnormal(value.m_real) || T.IsSubnormal(value.m_imaginary);