Method Equals
Equals<T>(Vector128<T>, Vector128<T>)
Compares two vectors to determine if they are equal on a per-element basis.
public static Vector128<T> Equals<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
- Vector128<T>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and right were equal.
Type Parameters
T
Exceptions
- NotSupportedException
The type of left and right (
T
) is not supported.