Method EqualsAll
EqualsAll<T>(Vector128<T>, Vector128<T>)
Compares two vectors to determine if all elements are equal.
public static bool EqualsAll<T>(Vector128<T> left, Vector128<T> right)
Parameters
leftVector128<T>The vector to compare with right.
rightVector128<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.