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