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