|
| | ArrayMap (nat_t cap, Cmp &_cmp) |
| |
| | ArrayMap (Cmp &&_cmp=Cmp()) |
| |
| | ArrayMap (nat_t cap, Cmp &&_cmp=Cmp()) |
| |
| | ArrayMap (const std::initializer_list< Item > &l) |
| |
| | ArrayMap (const ArrayMap &map) |
| |
| | ArrayMap (ArrayMap &&map) |
| |
| ArrayMap & | operator= (const ArrayMap &m) |
| |
| ArrayMap & | operator= (ArrayMap &&m) |
| |
| Cmp & | get_cmp () |
| |
| const Cmp & | get_cmp () const |
| |
| Value * | insert (const Key &k, const Value &v) |
| |
| Value * | insert (Key &&k, const Value &v) |
| |
| Value * | insert (const Key &k, Value &&v) |
| |
| Value * | insert (Key &&k, Value &&v) |
| |
| Value * | append (const Key &k, const Value &v) |
| |
| Value * | append (Key &&k, const Value &v) |
| |
| Value * | append (const Key &k, Value &&v) |
| |
| Value * | append (Key &&k, Value &&v) |
| |
| Value * | search (const Key &k) |
| |
| Value * | search (Key &&k) |
| |
| const Value * | search (const Key &k) const |
| |
| const Value * | search (Key &&k) const |
| |
| Value * | search_or_insert (const Key &k, const Value &v) |
| |
| Value * | search_or_insert (Key &&k, const Value &v) |
| |
| Value * | search_or_insert (const Key &k, Value &&v) |
| |
| Value * | search_or_insert (Key &&k, Value &&v) |
| |
| Value * | search_or_insert (const Key &k) |
| |
| Value * | search_or_insert (Key &&k) |
| |
| Value & | find (const Key &k) |
| |
| const Value & | find (const Key &k) const |
| |
| Value & | find (Key &&k) |
| |
| const Value & | find (Key &&k) const |
| |
| bool | has (const Key &k) const |
| |
| bool | has (Key &&k) const |
| |
| bool | remove (const Key &k) |
| |
| Value & | operator[] (const Key &k) |
| |
| const Value & | operator[] (const Key &k) const |
| |
| Value & | operator[] (Key &&k) |
| |
| const Value & | operator[] (Key &&k) const |
| |