A vector with the capacity defined at compile time.
- Note
- Uses a predefined array, so MAX_SIZE_ elements will be always be constructed.
Not equal operator.
- Parameters
-
| lhs | Reference to the first array. |
| rhs | Reference to the second array. |
- Returns
- true if the arrays are not equal, otherwise false
Less than operator.
- Parameters
-
| lhs | Reference to the first array. |
| rhs | Reference to the second array. |
- Returns
- true if the first array is lexigraphically less than the second, otherwise false
Less than or equal operator.
- Parameters
-
| lhs | Reference to the first array. |
| rhs | Reference to the second array. |
- Returns
- true if the first array is lexigraphically less than or equal to the second, otherwise false
Equal operator.
- Parameters
-
| lhs | Reference to the first array. |
| rhs | Reference to the second array. |
- Returns
- true if the arrays are equal, otherwise false
Greater than operator.
- Parameters
-
| lhs | Reference to the first array. |
| rhs | Reference to the second array. |
- Returns
- true if the first array is lexigraphically greater than the second, otherwise false
Greater than or equal operator.
- Parameters
-
| lhs | Reference to the first array. |
| rhs | Reference to the second array. |
- Returns
- true if the first array is lexigraphically greater than or equal to the second, otherwise false