Method EqualsAny
EqualsAny<T>(Vector128<T>, Vector128<T>)
Compares two vectors to determine if any elements are equal.
public static bool EqualsAny<T>(Vector128<T> left, Vector128<T> right)
Parameters
left
Vector128<T>The vector to compare with right.
right
Vector128<T>The vector to compare with left.
Returns
- bool
true if any elements in left was equal to the corresponding element in right.
Type Parameters
T
The type of the elements in the vector.
Exceptions
- NotSupportedException
The type of left and right (
T
) is not supported.