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