4 references to IsNormal
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Math.cs (1)
895if (!double.IsNormal(x)) // x is zero, subnormal, infinity, or NaN
src\libraries\System.Private.CoreLib\src\System\Runtime\InteropServices\NFloat.cs (1)
602public static bool IsNormal(NFloat value) => NativeType.IsNormal(value._value);
System.Runtime.Numerics (2)
System\Numerics\Complex.cs (2)
1036return double.IsNormal(value.m_real) 1037&& ((value.m_imaginary == 0.0) || double.IsNormal(value.m_imaginary));