15 implementations of IsNormal
System.Private.CoreLib (14)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
644
static bool INumberBase<byte>.
IsNormal
(byte value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1524
static bool INumberBase<char>.
IsNormal
(char value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1398
static bool INumberBase<decimal>.
IsNormal
(decimal value) => (value._hi32 | value._lo64) != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1372
static bool INumberBase<Int128>.
IsNormal
(Int128 value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
744
static bool INumberBase<short>.
IsNormal
(short value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
786
static bool INumberBase<int>.
IsNormal
(int value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
783
static bool INumberBase<long>.
IsNormal
(long value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
806
static bool INumberBase<nint>.
IsNormal
(nint value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
723
static bool INumberBase<sbyte>.
IsNormal
(sbyte value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1569
static bool INumberBase<UInt128>.
IsNormal
(UInt128 value) => value != 0U;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
649
static bool INumberBase<ushort>.
IsNormal
(ushort value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
714
static bool INumberBase<uint>.
IsNormal
(uint value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
721
static bool INumberBase<ulong>.
IsNormal
(ulong value) => value != 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
720
static bool INumberBase<nuint>.
IsNormal
(nuint value) => value != 0;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4213
static bool INumberBase<BigInteger>.
IsNormal
(BigInteger value) => (value != 0);
20 references to IsNormal
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsNormal.cs (1)
50
public 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)" />
1283
return T.
IsNormal
(value.m_real)
1284
&& ((value.m_imaginary == T.Zero) || T.
IsNormal
(value.m_imaginary));