Vector128.EqualsAll<T>(Vector128<T>, Vector128<T>) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Porovná dva vektory a určí, jestli jsou všechny prvky stejné.
public:
generic <typename T>
where T : value class static bool EqualsAll(System::Runtime::Intrinsics::Vector128<T> left, System::Runtime::Intrinsics::Vector128<T> right);
public static bool EqualsAll<T> (System.Runtime.Intrinsics.Vector128<T> left, System.Runtime.Intrinsics.Vector128<T> right) where T : struct;
static member EqualsAll : System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> * System.Runtime.Intrinsics.Vector128<'T (requires 'T : struct)> -> bool (requires 'T : struct)
Public Function EqualsAll(Of T As Structure) (left As Vector128(Of T), right As Vector128(Of T)) As Boolean
Parametry typu
- T
Typ prvků vektoru.
Parametry
- left
- Vector128<T>
Vektor, který se má porovnat s right
.
- right
- Vector128<T>
Vektor, který se má porovnat s left
.
Návraty
true
pokud byly všechny prvky ve left
shodné s odpovídajícím prvkem v right
.