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.
flat_map
A flat_map with the capacity defined at compile time. More...
Data Structures | |
class | iflat_map< TKey, TMapped, TKeyCompare > |
The base class for specifically sized flat_maps. More... | |
class | flat_map< TKey, TValue, MAX_SIZE_, TCompare > |
A flat_map implementation that uses a fixed size buffer. More... | |
Functions | |
template<typename TKey , typename TMapped , typename TKeyCompare > | |
bool | operator== (const etl::iflat_map< TKey, TMapped, TKeyCompare > &lhs, const etl::iflat_map< TKey, TMapped, TKeyCompare > &rhs) |
Equal operator. | |
template<typename TKey , typename TMapped , typename TKeyCompare > | |
bool | operator!= (const etl::iflat_map< TKey, TMapped, TKeyCompare > &lhs, const etl::iflat_map< TKey, TMapped, TKeyCompare > &rhs) |
Not equal operator. |
Detailed Description
A flat_map with the capacity defined at compile time.
Has insertion of O(N) and flat_map of O(logN) Duplicate entries are not allowed.
Function Documentation
bool etl::operator!= | ( | const etl::iflat_map< TKey, TMapped, TKeyCompare > & | lhs, |
const etl::iflat_map< TKey, TMapped, TKeyCompare > & | rhs | ||
) |
Not equal operator.
- Returns:
- true if the arrays are not equal, otherwise false
Definition at line 604 of file flat_map.h.
bool etl::operator== | ( | const etl::iflat_map< TKey, TMapped, TKeyCompare > & | lhs, |
const etl::iflat_map< TKey, TMapped, TKeyCompare > & | rhs | ||
) |
Equal operator.
- Returns:
- true if the arrays are equal, otherwise false
Definition at line 591 of file flat_map.h.
Generated on Tue Jul 12 2022 14:05:47 by
