4 references to LastIndexOf
System.Private.CoreLib (4)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
1033static int ISimdVector<Vector<T>, T>.LastIndexOf(Vector<T> vector, T value) => Vector.LastIndexOf(vector, value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (3)
1961return LastIndexOf(vector.As<T, int>(), -1); 1965return LastIndexOf(vector.As<T, long>(), -1); 1969return LastIndexOf(vector, Scalar<T>.AllBitsSet);