5 implementations of Create
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
914
static Vector<T> ISimdVector<Vector<T>, T>.
Create
(T[] values, int index) => new Vector<T>(values, index);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
565
static Vector128<T> ISimdVector<Vector128<T>, T>.
Create
(T[] values, int index) => Vector128.Create(values, index);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
554
static Vector256<T> ISimdVector<Vector256<T>, T>.
Create
(T[] values, int index) => Vector256.Create(values, index);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
554
static Vector512<T> ISimdVector<Vector512<T>, T>.
Create
(T[] values, int index) => Vector512.Create(values, index);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
622
static Vector64<T> ISimdVector<Vector64<T>, T>.
Create
(T[] values, int index) => Vector64.Create(values, index);
5 references to Create
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
913
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Create
(T[], int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
564
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Create
(T[], int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
553
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Create
(T[], int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
553
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Create
(T[], int)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
621
/// <inheritdoc cref="ISimdVector{TSelf, T}.
Create
(T[], int)" />