Lines Matching refs:ListMap
45 class ListMap {
54 ListMap() = default;
57 ListMap(ListMap&& other) noexcept = default;
58 ListMap& operator=(ListMap&& other) noexcept = default;
62 ListMap(const ListMap& other) : node_list_(other.node_list_) { in ListMap() function
70 ListMap& operator=(const ListMap& other) {
83 bool operator==(const ListMap& rhs) const {
86 bool operator!=(const ListMap& rhs) const {
90 ~ListMap() { in ~ListMap()
102 return const_cast<ListMap*>(this)->find(key); in find()
162 void splice(const_iterator pos, ListMap<Key, T>& other, const_iterator it) { in splice()