Method EqualsAny
EqualsAny<T>(Vector256<T>, Vector256<T>)
Compares two vectors to determine if any elements are equal.
public static bool EqualsAny<T>(Vector256<T> left, Vector256<T> right)
Parameters
leftVector256<T>The vector to compare with right.
rightVector256<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
TThe type of the elements in the vector.
Exceptions
- NotSupportedException
The type of left and right (
T) is not supported.