3 references to EqualsAny
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Numerics\Vector.cs (2)
118
public static bool Any<T>(Vector<T> vector, T value) =>
EqualsAny
(vector, Create(value));
2461
public 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)
949
static bool ISimdVector<Vector<T>, T>.EqualsAny(Vector<T> left, Vector<T> right) => Vector.
EqualsAny
(left, right);