3 references to EqualsAny
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (2)
118public static bool Any<T>(Vector<T> vector, T value) => EqualsAny(vector, Create(value)); 2461public static bool None<T>(Vector<T> vector, T value) => !EqualsAny(vector, Create(value));
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector_1.cs (1)
949static bool ISimdVector<Vector<T>, T>.EqualsAny(Vector<T> left, Vector<T> right) => Vector.EqualsAny(left, right);