Overload List
| # | Signature | Description |
|---|---|---|
| 1 | Boolean op_LessThanOrEqual(TCplx ALeft, Vector ARight) | Returns true, if ALeft is smaller or equal from all elements in ARight. |
| 2 | Boolean op_LessThanOrEqual(Vector ALeft, TCplx ARight) | Returns true, if Left is less than or equal to Right. |
| 3 | Boolean op_LessThanOrEqual(Vector ALeft, Vector ARight) | Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight. |
| 4 | Boolean op_LessThanOrEqual(Vector ALeft, Double ARight) | Returns true, if all elements of ALeft are smaller or equal from ARight. |
| 5 | Boolean op_LessThanOrEqual(Double ALeft, Vector ARight) | Returns true, if ALeft is smaller or equal from all elements in ARight. |
Overload 1: Boolean op_LessThanOrEqual(TCplx ALeft, Vector ARight)
Returns true, if ALeft is smaller or equal from all elements in ARight.
Returns: Boolean
Overload 2: Boolean op_LessThanOrEqual(Vector ALeft, TCplx ARight)
Returns true, if Left is less than or equal to Right.
Returns: Boolean
Overload 3: Boolean op_LessThanOrEqual(Vector ALeft, Vector ARight)
Returns true, if coresponding elements in ALeft are smaller than or equal from coresponding elements in ARight.
Returns: Boolean
Overload 4: Boolean op_LessThanOrEqual(Vector ALeft, Double ARight)
Returns true, if all elements of ALeft are smaller or equal from ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | Vector | |
| 2 | ARight | Double | scalar |
Returns: Boolean
Overload 5: Boolean op_LessThanOrEqual(Double ALeft, Vector ARight)
Returns true, if ALeft is smaller or equal from all elements in ARight.
| # | Name | Type | Description |
|---|---|---|---|
| 1 | ALeft | Double | scalar |
| 2 | ARight | Vector |
Returns: Boolean