5 implementations of Create
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
917static Vector<T> ISimdVector<Vector<T>, T>.Create(ReadOnlySpan<T> values) => Vector.Create(values);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
568static Vector128<T> ISimdVector<Vector128<T>, T>.Create(ReadOnlySpan<T> values) => Vector128.Create(values);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
557static Vector256<T> ISimdVector<Vector256<T>, T>.Create(ReadOnlySpan<T> values) => Vector256.Create(values);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
557static Vector512<T> ISimdVector<Vector512<T>, T>.Create(ReadOnlySpan<T> values) => Vector512.Create(values);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
625static Vector64<T> ISimdVector<Vector64<T>, T>.Create(ReadOnlySpan<T> values) => Vector64.Create(values);
7 references to Create
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
916/// <inheritdoc cref="ISimdVector{TSelf, T}.Create(ReadOnlySpan{T})" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\ISimdVector_2.cs (2)
235static virtual TSelf Create(T[] values) => TSelf.Create(values.AsSpan()); 244static virtual TSelf Create(T[] values, int index) => TSelf.Create(values.AsSpan(index));
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
567/// <inheritdoc cref="ISimdVector{TSelf, T}.Create(ReadOnlySpan{T})" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
556/// <inheritdoc cref="ISimdVector{TSelf, T}.Create(ReadOnlySpan{T})" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
556/// <inheritdoc cref="ISimdVector{TSelf, T}.Create(ReadOnlySpan{T})" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
624/// <inheritdoc cref="ISimdVector{TSelf, T}.Create(ReadOnlySpan{T})" />