Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
multiset.h File Reference
Go to the source code of this file.
Data Structures | |
class | multiset_exception |
Exception for the set. More... | |
class | multiset_full |
Full exception for the set. More... | |
class | multiset_out_of_bounds |
Map out of bounds exception. More... | |
class | multiset_iterator |
Iterator exception for the set. More... | |
class | multiset_base |
The base class for all sets. More... | |
struct | multiset_base::Node |
The node element in the multiset. More... | |
class | imultiset< T, TCompare > |
A templated base for all etl::multiset types. More... | |
struct | imultiset< T, TCompare >::key_comp |
How to compare two key elements. More... | |
struct | imultiset< T, TCompare >::value_comp |
How to compare two value elements. More... | |
struct | imultiset< T, TCompare >::Data_Node |
The data node element in the multiset. More... | |
class | imultiset< T, TCompare >::iterator |
iterator. More... | |
class | imultiset< T, TCompare >::const_iterator |
const_iterator More... | |
class | multiset< T, MAX_SIZE_, TCompare > |
A templated multiset implementation that uses a fixed size buffer. More... | |
Namespaces | |
namespace | etl |
A multimap with the capacity defined at compile time. | |
Functions | |
template<typename T , typename TCompare > | |
bool | operator== (const etl::imultiset< T, TCompare > &lhs, const etl::imultiset< T, TCompare > &rhs) |
Equal operator. | |
template<typename T , typename TCompare > | |
bool | operator!= (const etl::imultiset< T, TCompare > &lhs, const etl::imultiset< T, TCompare > &rhs) |
Not equal operator. | |
template<typename T , typename TCompare > | |
bool | operator< (const etl::imultiset< T, TCompare > &lhs, const etl::imultiset< T, TCompare > &rhs) |
Less than operator. | |
template<typename T , typename TCompare > | |
bool | operator> (const etl::imultiset< T, TCompare > &lhs, const etl::imultiset< T, TCompare > &rhs) |
Greater than operator. | |
template<typename T , typename TCompare > | |
bool | operator<= (const etl::imultiset< T, TCompare > &lhs, const etl::imultiset< T, TCompare > &rhs) |
Less than or equal operator. | |
template<typename T , typename TCompare > | |
bool | operator>= (const etl::imultiset< T, TCompare > &lhs, const etl::imultiset< T, TCompare > &rhs) |
Greater than or equal operator. |
Detailed Description
Definition in file multiset.h.
Function Documentation
bool operator!= | ( | const etl::imultiset< T, TCompare > & | lhs, |
const etl::imultiset< T, TCompare > & | rhs | ||
) |
Not equal operator.
- Parameters:
-
lhs Reference to the first lookup. rhs Reference to the second lookup.
- Returns:
- true if the arrays are not equal, otherwise false
Definition at line 1958 of file multiset.h.
bool operator< | ( | const etl::imultiset< T, TCompare > & | lhs, |
const etl::imultiset< T, TCompare > & | rhs | ||
) |
Less than operator.
- Parameters:
-
lhs Reference to the first list. rhs Reference to the second list.
- Returns:
- true if the first list is lexicographically less than the second, otherwise false.
Definition at line 1971 of file multiset.h.
bool operator<= | ( | const etl::imultiset< T, TCompare > & | lhs, |
const etl::imultiset< T, TCompare > & | rhs | ||
) |
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 lexicographically less than or equal to the second, otherwise false.
Definition at line 2000 of file multiset.h.
bool operator== | ( | const etl::imultiset< T, TCompare > & | lhs, |
const etl::imultiset< T, TCompare > & | rhs | ||
) |
Equal operator.
- Parameters:
-
lhs Reference to the first lookup. rhs Reference to the second lookup.
- Returns:
- true if the arrays are equal, otherwise false
Definition at line 1945 of file multiset.h.
bool operator> | ( | const etl::imultiset< T, TCompare > & | lhs, |
const etl::imultiset< T, TCompare > & | rhs | ||
) |
Greater than operator.
- Parameters:
-
lhs Reference to the first list. rhs Reference to the second list.
- Returns:
- true if the first list is lexicographically greater than the second, otherwise false.
Definition at line 1987 of file multiset.h.
bool operator>= | ( | const etl::imultiset< T, TCompare > & | lhs, |
const etl::imultiset< T, TCompare > & | rhs | ||
) |
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 lexicographically greater than or equal to the second, otherwise false.
Definition at line 2013 of file multiset.h.
Generated on Tue Jul 12 2022 14:05:47 by
