15 implementations of IsNormal
System.Private.CoreLib (14)
src\libraries\System.Private.CoreLib\src\System\Byte.cs (1)
649
static bool INumberBase<byte>.
IsNormal
(byte value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Char.cs (1)
1470
static bool INumberBase<char>.
IsNormal
(char value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Decimal.cs (1)
1425
static bool INumberBase<decimal>.
IsNormal
(decimal value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int128.cs (1)
1386
static bool INumberBase<Int128>.
IsNormal
(Int128 value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int16.cs (1)
763
static bool INumberBase<short>.
IsNormal
(short value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int32.cs (1)
804
static bool INumberBase<int>.
IsNormal
(int value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\Int64.cs (1)
801
static bool INumberBase<long>.
IsNormal
(long value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\IntPtr.cs (1)
796
static bool INumberBase<nint>.
IsNormal
(nint value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\SByte.cs (1)
726
static bool INumberBase<sbyte>.
IsNormal
(sbyte value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UInt128.cs (1)
1536
static bool INumberBase<UInt128>.
IsNormal
(UInt128 value) => value != 0U;
src\libraries\System.Private.CoreLib\src\System\UInt16.cs (1)
668
static bool INumberBase<ushort>.
IsNormal
(ushort value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UInt32.cs (1)
707
static bool INumberBase<uint>.
IsNormal
(uint value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UInt64.cs (1)
706
static bool INumberBase<ulong>.
IsNormal
(ulong value) => value != 0;
src\libraries\System.Private.CoreLib\src\System\UIntPtr.cs (1)
709
static bool INumberBase<nuint>.
IsNormal
(nuint value) => value != 0;
System.Runtime.Numerics (1)
System\Numerics\BigInteger.cs (1)
4096
static bool INumberBase<BigInteger>.
IsNormal
(BigInteger value) => (value != 0);
17 references to IsNormal
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\TensorPrimitives.IsNormal.cs (1)
53
public 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)" />