Table of Contents

Method YIsNotEquals

Namespace
Zyl.VectorTraits.Impl.AVector128
Assembly
VectorTraits.dll

YIsNotEquals(Vector128<double>, Vector128<double>)

Compares two vectors to determine if they are not equal on a per-element basis (比较两个向量,确定它们每个元素是否不相等). Mnemonic: rt[i] := to_mask(left[i] != right[i]).

public override Vector128<double> YIsNotEquals(Vector128<double> left, Vector128<double> right)

Parameters

left Vector128<double>

The vector to compare with right (将会与right进行比较的向量).

right Vector128<double>

The vector to compare with left (将会与left进行比较的向量).

Returns

Vector128<double>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and rightwere not equal (一个向量,其元素是全位为1或0,取决于leftright的对应元素中是否不相等).

See Also

YIsNotEquals(Vector128<long>, Vector128<long>)

Compares two vectors to determine if they are not equal on a per-element basis (比较两个向量,确定它们每个元素是否不相等). Mnemonic: rt[i] := to_mask(left[i] != right[i]).

public override Vector128<long> YIsNotEquals(Vector128<long> left, Vector128<long> right)

Parameters

left Vector128<long>

The vector to compare with right (将会与right进行比较的向量).

right Vector128<long>

The vector to compare with left (将会与left进行比较的向量).

Returns

Vector128<long>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and rightwere not equal (一个向量,其元素是全位为1或0,取决于leftright的对应元素中是否不相等).

See Also

YIsNotEquals(Vector128<ulong>, Vector128<ulong>)

Compares two vectors to determine if they are not equal on a per-element basis (比较两个向量,确定它们每个元素是否不相等). Mnemonic: rt[i] := to_mask(left[i] != right[i]).

[CLSCompliant(false)]
public override Vector128<ulong> YIsNotEquals(Vector128<ulong> left, Vector128<ulong> right)

Parameters

left Vector128<ulong>

The vector to compare with right (将会与right进行比较的向量).

right Vector128<ulong>

The vector to compare with left (将会与left进行比较的向量).

Returns

Vector128<ulong>

A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in left and rightwere not equal (一个向量,其元素是全位为1或0,取决于leftright的对应元素中是否不相等).

See Also