5 implementations of IsInfinity
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1001static Vector<T> ISimdVector<Vector<T>, T>.IsInfinity(Vector<T> vector) => Vector.IsInfinity(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
652static Vector128<T> ISimdVector<Vector128<T>, T>.IsInfinity(Vector128<T> vector) => Vector128.IsInfinity(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
641static Vector256<T> ISimdVector<Vector256<T>, T>.IsInfinity(Vector256<T> vector) => Vector256.IsInfinity(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
641static Vector512<T> ISimdVector<Vector512<T>, T>.IsInfinity(Vector512<T> vector) => Vector512.IsInfinity(vector);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
709static Vector64<T> ISimdVector<Vector64<T>, T>.IsInfinity(Vector64<T> vector) => Vector64.IsInfinity(vector);
7 references to IsInfinity
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
999/// <inheritdoc cref="ISimdVector{TSelf, T}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\ISimdVector_2.cs (1)
400/// <remarks>This function returning <c>zero</c> for a corresponding element does not imply that <see cref="IsInfinity(TSelf)" /> will return <c>all-bits-set</c> for that element. <c>NaN</c> is not finite nor infinite.</remarks>
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
650/// <inheritdoc cref="ISimdVector{TSelf, T}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
639/// <inheritdoc cref="ISimdVector{TSelf, T}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
639/// <inheritdoc cref="ISimdVector{TSelf, T}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64.cs (1)
1836/// <inheritdoc cref="ISimdVector{TSelf, T}.IsInfinity(TSelf)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
707/// <inheritdoc cref="ISimdVector{TSelf, T}.IsInfinity(TSelf)" />