15 implementations of IsNormal
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
650static bool INumberBase<byte>.IsNormal(byte value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1509static bool INumberBase<char>.IsNormal(char value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1404static bool INumberBase<decimal>.IsNormal(decimal value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1381static bool INumberBase<Int128>.IsNormal(Int128 value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
757static bool INumberBase<short>.IsNormal(short value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
799static bool INumberBase<int>.IsNormal(int value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
796static bool INumberBase<long>.IsNormal(long value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
809static bool INumberBase<nint>.IsNormal(nint value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
736static bool INumberBase<sbyte>.IsNormal(sbyte value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1573static bool INumberBase<UInt128>.IsNormal(UInt128 value) => value != 0U;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
655static bool INumberBase<ushort>.IsNormal(ushort value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
720static bool INumberBase<uint>.IsNormal(uint value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
727static bool INumberBase<ulong>.IsNormal(ulong value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
716static bool INumberBase<nuint>.IsNormal(nuint value) => value != 0;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4021static bool INumberBase<BigInteger>.IsNormal(BigInteger value) => (value != 0);
17 references to IsNormal
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsNormal.cs (1)
50public static bool Invoke(T x) => T.IsNormal(x);
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
649/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1508/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1403/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1380/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
756/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
798/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
795/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
808/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
735/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1572/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
654/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
719/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
726/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
715/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
4020/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System\Numerics\Complex.cs (1)
1038/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />