| 191 | |
| 192 | template <class K, class V> |
| 193 | void swap(map_slot_type<K, V>& lhs, map_slot_type<K, V>& rhs) { |
| 194 | std::swap(lhs.mutable_value, rhs.mutable_value); |
| 195 | } |
| 196 | |
| 197 | // A parameters structure for holding the type parameters for a btree_map. |
| 198 | // Compare and Alloc should be nothrow copy-constructible. |