| 51 | typedef typename vector_type::const_reverse_iterator const_reverse_iterator; |
| 52 | |
| 53 | explicit flat_map(const context &context = system::default_context()) |
| 54 | : m_vector(context) |
| 55 | { |
| 56 | } |
| 57 | |
| 58 | flat_map(const flat_map<Key, T> &other) |
| 59 | : m_vector(other.m_vector) |
nothing calls this directly
no outgoing calls
no test coverage detected