Method GreaterThanOrEqualAll
- Namespace
- Zyl.VectorTraits
- Assembly
- VectorTraits.dll
GreaterThanOrEqualAll(Vector512<float>, Vector512<float>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
public static bool GreaterThanOrEqualAll(Vector512<float> left, Vector512<float> right)
Parameters
leftVector512<float>The vector to compare with
right(将会与right进行比较的向量).rightVector512<float>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<double>, Vector512<double>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
public static bool GreaterThanOrEqualAll(Vector512<double> left, Vector512<double> right)
Parameters
leftVector512<double>The vector to compare with
right(将会与right进行比较的向量).rightVector512<double>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<sbyte>, Vector512<sbyte>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
[CLSCompliant(false)]
public static bool GreaterThanOrEqualAll(Vector512<sbyte> left, Vector512<sbyte> right)
Parameters
leftVector512<sbyte>The vector to compare with
right(将会与right进行比较的向量).rightVector512<sbyte>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<byte>, Vector512<byte>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
public static bool GreaterThanOrEqualAll(Vector512<byte> left, Vector512<byte> right)
Parameters
leftVector512<byte>The vector to compare with
right(将会与right进行比较的向量).rightVector512<byte>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<short>, Vector512<short>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
public static bool GreaterThanOrEqualAll(Vector512<short> left, Vector512<short> right)
Parameters
leftVector512<short>The vector to compare with
right(将会与right进行比较的向量).rightVector512<short>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<ushort>, Vector512<ushort>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
[CLSCompliant(false)]
public static bool GreaterThanOrEqualAll(Vector512<ushort> left, Vector512<ushort> right)
Parameters
leftVector512<ushort>The vector to compare with
right(将会与right进行比较的向量).rightVector512<ushort>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<int>, Vector512<int>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
public static bool GreaterThanOrEqualAll(Vector512<int> left, Vector512<int> right)
Parameters
leftVector512<int>The vector to compare with
right(将会与right进行比较的向量).rightVector512<int>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<uint>, Vector512<uint>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
[CLSCompliant(false)]
public static bool GreaterThanOrEqualAll(Vector512<uint> left, Vector512<uint> right)
Parameters
leftVector512<uint>The vector to compare with
right(将会与right进行比较的向量).rightVector512<uint>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<long>, Vector512<long>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
public static bool GreaterThanOrEqualAll(Vector512<long> left, Vector512<long> right)
Parameters
leftVector512<long>The vector to compare with
right(将会与right进行比较的向量).rightVector512<long>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also
GreaterThanOrEqualAll(Vector512<ulong>, Vector512<ulong>)
Compares two vectors to determine if all elements are greater or equal (比较两个向量以判定所有元素是否大于或等于).
Mnemonic: rt := (left[0] >= right[0]) && (left[1] >= right[1]) && ... && (left[Count-1] >= right[Count-1]).
[CLSCompliant(false)]
public static bool GreaterThanOrEqualAll(Vector512<ulong> left, Vector512<ulong> right)
Parameters
leftVector512<ulong>The vector to compare with
right(将会与right进行比较的向量).rightVector512<ulong>The vector to compare with
left(将会与left进行比较的向量).
Returns
- bool
Return
trueif all elements inleftwere greater or equal to the corresponding element inright(当left和right的全部对应元素大于或等于时返回true).
- See Also