15 implementations of IsNormal
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
644static bool INumberBase<byte>.IsNormal(byte value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1524static bool INumberBase<char>.IsNormal(char value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1398static bool INumberBase<decimal>.IsNormal(decimal value) => (value._hi32 | value._lo64) != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1372static bool INumberBase<Int128>.IsNormal(Int128 value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
744static bool INumberBase<short>.IsNormal(short value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
786static bool INumberBase<int>.IsNormal(int value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
783static bool INumberBase<long>.IsNormal(long value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
806static bool INumberBase<nint>.IsNormal(nint value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
723static bool INumberBase<sbyte>.IsNormal(sbyte value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1569static bool INumberBase<UInt128>.IsNormal(UInt128 value) => value != 0U;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
649static bool INumberBase<ushort>.IsNormal(ushort value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
714static bool INumberBase<uint>.IsNormal(uint value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
721static bool INumberBase<ulong>.IsNormal(ulong value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
720static bool INumberBase<nuint>.IsNormal(nuint value) => value != 0;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4213static bool INumberBase<BigInteger>.IsNormal(BigInteger value) => (value != 0);
20 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)
643/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1523/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1397/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1371/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
743/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
785/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
782/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
805/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
722/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1568/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
648/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
713/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
720/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
719/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System.Runtime.Numerics (5)
System\Numerics\BigInteger.cs (1)
4212/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System\Numerics\Complex.cs (1)
615/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" />
System\Numerics\Complex.Generic.cs (3)
1277/// <inheritdoc cref="INumberBase{TSelf}.IsNormal(TSelf)" /> 1283return T.IsNormal(value.m_real) 1284&& ((value.m_imaginary == T.Zero) || T.IsNormal(value.m_imaginary));