5 implementations of IsNormal
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1021
static Vector<T> ISimdVector<Vector<T>, T>.
IsNormal
(Vector<T> vector) => Vector.IsNormal(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
672
static Vector128<T> ISimdVector<Vector128<T>, T>.
IsNormal
(Vector128<T> vector) => Vector128.IsNormal(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
661
static Vector256<T> ISimdVector<Vector256<T>, T>.
IsNormal
(Vector256<T> vector) => Vector256.IsNormal(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
661
static Vector512<T> ISimdVector<Vector512<T>, T>.
IsNormal
(Vector512<T> vector) => Vector512.IsNormal(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
729
static Vector64<T> ISimdVector<Vector64<T>, T>.
IsNormal
(Vector64<T> vector) => Vector64.IsNormal(vector);
6 references to IsNormal
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1019
/// <inheritdoc cref="ISimdVector{TSelf, T}.
IsNormal
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
670
/// <inheritdoc cref="ISimdVector{TSelf, T}.
IsNormal
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
659
/// <inheritdoc cref="ISimdVector{TSelf, T}.
IsNormal
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
659
/// <inheritdoc cref="ISimdVector{TSelf, T}.
IsNormal
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
1915
/// <inheritdoc cref="ISimdVector{TSelf, T}.
IsNormal
(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
727
/// <inheritdoc cref="ISimdVector{TSelf, T}.
IsNormal
(TSelf)" />