Method EqualsAll
EqualsAll<T>(Vector256<T>, Vector256<T>)
Compares two vectors to determine if all elements are equal.
public static bool EqualsAll<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 all 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.