15 implementations of IsSubnormal
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
664static bool INumberBase<byte>.IsSubnormal(byte value) => false;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1485static bool INumberBase<char>.IsSubnormal(char value) => false;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1444static bool INumberBase<decimal>.IsSubnormal(decimal value) => false;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1401static bool INumberBase<Int128>.IsSubnormal(Int128 value) => false;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
778static bool INumberBase<short>.IsSubnormal(short value) => false;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
819static bool INumberBase<int>.IsSubnormal(int value) => false;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
816static bool INumberBase<long>.IsSubnormal(long value) => false;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
811static bool INumberBase<nint>.IsSubnormal(nint value) => false;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
741static bool INumberBase<sbyte>.IsSubnormal(sbyte value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1551static bool INumberBase<UInt128>.IsSubnormal(UInt128 value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
683static bool INumberBase<ushort>.IsSubnormal(ushort value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
722static bool INumberBase<uint>.IsSubnormal(uint value) => false;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
721static bool INumberBase<ulong>.IsSubnormal(ulong value) => false;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
724static bool INumberBase<nuint>.IsSubnormal(nuint value) => false;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4124static bool INumberBase<BigInteger>.IsSubnormal(BigInteger value) => false;
17 references to IsSubnormal
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsSubnormal.cs (1)
59public static bool Invoke(T x) => T.IsSubnormal(x);
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
663/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1484/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1443/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1400/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
777/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
818/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
815/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
810/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
740/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1550/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
682/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
721/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
720/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
723/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
4123/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />
System\Numerics\Complex.cs (1)
1064/// <inheritdoc cref="INumberBase{TSelf}.IsSubnormal(TSelf)" />