#include <iterator>
#include <algorithm>
#include <functional>
#include <stddef.h>
#include "nullptr.h"
#include "list_base.h"
#include "type_traits.h"
#include "parameter_type.h"
Go to the source code of this file.
Not equal operator.
- Parameters
-
| lhs | Reference to the first list. |
| rhs | Reference to the second list. |
- Returns
- true if the arrays are not equal, otherwise false.
Less than operator.
- Parameters
-
| lhs | Reference to the first list. |
| rhs | Reference to the second list. |
- Returns
- true if the first list is lexigraphically less than the second, otherwise false.
Less than or equal operator.
- Parameters
-
| lhs | Reference to the first list. |
| rhs | Reference to the second list. |
- Returns
- true if the first list is lexigraphically less than or equal to the second, otherwise false.
Equal operator.
- Parameters
-
| lhs | Reference to the first list. |
| rhs | Reference to the second list. |
- Returns
- true if the arrays are equal, otherwise false.
Greater than operator.
- Parameters
-
| lhs | Reference to the first list. |
| rhs | Reference to the second list. |
- Returns
- true if the first list is lexigraphically greater than the second, otherwise false.
Greater than or equal operator.
- Parameters
-
| lhs | Reference to the first list. |
| rhs | Reference to the second list. |
- Returns
- true if the first list is lexigraphically greater than or equal to the second, otherwise false.