Stefan Scholz / ETL
Embed: (wiki syntax)

« Back to documentation index

unordered_map

unordered_map

A unordered_map with the capacity defined at compile time. More...

Data Structures

class  unordered_map_exception
 Exception for the unordered_map. More...
class  unordered_map_full
 Full exception for the unordered_map. More...
class  unordered_map_out_of_range
 Out of range exception for the unordered_map. More...
class  unordered_map_iterator
 Iterator exception for the unordered_map. More...
class  iunordered_map< TKey, T, THash, TKeyEqual >
 The base class for specifically sized unordered_map. More...

Functions

template<typename TKey , typename TMapped , typename TKeyCompare >
bool operator== (const etl::iunordered_map< TKey, TMapped, TKeyCompare > &lhs, const etl::iunordered_map< TKey, TMapped, TKeyCompare > &rhs)
 Equal operator.
template<typename TKey , typename TMapped , typename TKeyCompare >
bool operator!= (const etl::iunordered_map< TKey, TMapped, TKeyCompare > &lhs, const etl::iunordered_map< TKey, TMapped, TKeyCompare > &rhs)
 Not equal operator.

Detailed Description

A unordered_map with the capacity defined at compile time.


Function Documentation

bool etl::operator!= ( const etl::iunordered_map< TKey, TMapped, TKeyCompare > &  lhs,
const etl::iunordered_map< TKey, TMapped, TKeyCompare > &  rhs 
)

Not equal operator.

Parameters:
lhsReference to the first unordered_map.
rhsReference to the second unordered_map.
Returns:
true if the arrays are not equal, otherwise false

Definition at line 1309 of file unordered_map.h.

bool etl::operator== ( const etl::iunordered_map< TKey, TMapped, TKeyCompare > &  lhs,
const etl::iunordered_map< TKey, TMapped, TKeyCompare > &  rhs 
)

Equal operator.

Parameters:
lhsReference to the first unordered_map.
rhsReference to the second unordered_map.
Returns:
true if the arrays are equal, otherwise false

Definition at line 1296 of file unordered_map.h.