Commit 39601bf2 authored by Dominik Charousset's avatar Dominik Charousset Committed by Dominik Charousset

Allow access to unordered_flat_maps's container

parent 3be87a08
......@@ -153,6 +153,11 @@ public:
return xs_.clear();
}
/// Proves raw access to the underlying container.
vector_type& container() {
return xs_;
}
std::pair<iterator, bool> insert(value_type x) {
return insert(end(), std::move(x));
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment