Method YIsNotEquals
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
YIsNotEquals(Vector<float>, Vector<float>)
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 static Vector<float> YIsNotEquals(Vector<float> left, Vector<float> right)
Parameters
left
Vector<float>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<float>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<float>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<double>, Vector<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 static Vector<double> YIsNotEquals(Vector<double> left, Vector<double> right)
Parameters
left
Vector<double>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<double>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<double>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<sbyte>, Vector<sbyte>)
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 static Vector<sbyte> YIsNotEquals(Vector<sbyte> left, Vector<sbyte> right)
Parameters
left
Vector<sbyte>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<sbyte>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<sbyte>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<byte>, Vector<byte>)
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 static Vector<byte> YIsNotEquals(Vector<byte> left, Vector<byte> right)
Parameters
left
Vector<byte>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<byte>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<byte>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<short>, Vector<short>)
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 static Vector<short> YIsNotEquals(Vector<short> left, Vector<short> right)
Parameters
left
Vector<short>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<short>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<short>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<ushort>, Vector<ushort>)
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 static Vector<ushort> YIsNotEquals(Vector<ushort> left, Vector<ushort> right)
Parameters
left
Vector<ushort>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<ushort>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<ushort>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<int>, Vector<int>)
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 static Vector<int> YIsNotEquals(Vector<int> left, Vector<int> right)
Parameters
left
Vector<int>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<int>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<int>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<uint>, Vector<uint>)
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 static Vector<uint> YIsNotEquals(Vector<uint> left, Vector<uint> right)
Parameters
left
Vector<uint>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<uint>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<uint>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<long>, Vector<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 static Vector<long> YIsNotEquals(Vector<long> left, Vector<long> right)
Parameters
left
Vector<long>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<long>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<long>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also
YIsNotEquals(Vector<ulong>, Vector<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 static Vector<ulong> YIsNotEquals(Vector<ulong> left, Vector<ulong> right)
Parameters
left
Vector<ulong>The vector to compare with
right
(将会与right
进行比较的向量).right
Vector<ulong>The vector to compare with
left
(将会与left
进行比较的向量).
Returns
- Vector<ulong>
A vector whose elements are all-bits-set or zero, depending on if the corresponding elements in
left
andright
were not equal (一个向量,其元素是全位为1或0,取决于left
和right
的对应元素中是否不相等).
- See Also