Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Boolean op_GreaterThanOrEqual(VectorInt ALeft, VectorInt ARight) | Returns true, if coresponding elements in ALeft are greater or equal from coresponding elements in ARight. |
| 2 | Boolean op_GreaterThanOrEqual(VectorInt ALeft, Int32 ARight) | Returns true, if all elements of ALeft are greater or equal from ARight. |
| 3 | Boolean op_GreaterThanOrEqual(Int32 ALeft, VectorInt ARight) | Returns true, if ALeft is greater or equal from all elements in ARight. |
Overload 1: Boolean op_GreaterThanOrEqual(VectorInt ALeft, VectorInt ARight)
Returns true, if coresponding elements in ALeft are greater or equal from coresponding elements in ARight.
Returns: Boolean
Overload 2: Boolean op_GreaterThanOrEqual(VectorInt ALeft, Int32 ARight)
Returns true, if all elements of ALeft are greater or equal from ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | VectorInt | |
| 2 | ARight | Int32 |
Returns: Boolean
Overload 3: Boolean op_GreaterThanOrEqual(Int32 ALeft, VectorInt ARight)
Returns true, if ALeft is greater or equal from all elements in ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | Int32 | |
| 2 | ARight | VectorInt |
Returns: Boolean