5 implementations of LastIndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1044
static int ISimdVector<Vector<T>, T>.
LastIndexOf
(Vector<T> vector, T value) => Vector.LastIndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
696
static int ISimdVector<Vector128<T>, T>.
LastIndexOf
(Vector128<T> vector, T value) => Vector128.LastIndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
684
static int ISimdVector<Vector256<T>, T>.
LastIndexOf
(Vector256<T> vector, T value) => Vector256.LastIndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
684
static int ISimdVector<Vector512<T>, T>.
LastIndexOf
(Vector512<T> vector, T value) => Vector512.LastIndexOf(vector, value);
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
753
static int ISimdVector<Vector64<T>, T>.
LastIndexOf
(Vector64<T> vector, T value) => Vector64.LastIndexOf(vector, value);
5 references to LastIndexOf
System.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1042
/// <inheritdoc cref="ISimdVector{TSelf, T}.
LastIndexOf
(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector128_1.cs (1)
694
/// <inheritdoc cref="ISimdVector{TSelf, T}.
LastIndexOf
(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector256_1.cs (1)
682
/// <inheritdoc cref="ISimdVector{TSelf, T}.
LastIndexOf
(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector512_1.cs (1)
682
/// <inheritdoc cref="ISimdVector{TSelf, T}.
LastIndexOf
(TSelf, T)" />
src\libraries\System.Private.CoreLib\src\System\Runtime\Intrinsics\Vector64_1.cs (1)
751
/// <inheritdoc cref="ISimdVector{TSelf, T}.
LastIndexOf
(TSelf, T)" />