Table of Contents

Method EqualsAll

Namespace
Zyl.ExSpans.Impl
Assembly
ExSpans.dll

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

left Vector256<T>

The vector to compare with right.

right Vector256<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

T

The type of the elements in the vector.

Exceptions

NotSupportedException

The type of left and right (T) is not supported.