15 implementations of IsNormal
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
649static bool INumberBase<byte>.IsNormal(byte value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1470static bool INumberBase<char>.IsNormal(char value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1425static bool INumberBase<decimal>.IsNormal(decimal value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1386static bool INumberBase<Int128>.IsNormal(Int128 value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
763static bool INumberBase<short>.IsNormal(short value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
804static bool INumberBase<int>.IsNormal(int value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
801static bool INumberBase<long>.IsNormal(long value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
796static bool INumberBase<nint>.IsNormal(nint value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
726static bool INumberBase<sbyte>.IsNormal(sbyte value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1536static bool INumberBase<UInt128>.IsNormal(UInt128 value) => value != 0U;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
668static bool INumberBase<ushort>.IsNormal(ushort value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
707static bool INumberBase<uint>.IsNormal(uint value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
706static bool INumberBase<ulong>.IsNormal(ulong value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
709static bool INumberBase<nuint>.IsNormal(nuint value) => value != 0;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4096static bool INumberBase<BigInteger>.IsNormal(BigInteger value) => (value != 0);
17 references to IsNormal
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsNormal.cs (1)
53public static bool Invoke(T x) => T.IsNormal(x);
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
648/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1469/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1424/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1385/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
762/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
803/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
800/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
795/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
725/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1535/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
667/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
706/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
705/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
708/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System.Runtime.Numerics (2)
System\Numerics\BigInteger.cs (1)
4095/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System\Numerics\Complex.cs (1)
1030/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />