| 1036 | |
| 1037 | template <class... Args> |
| 1038 | std::pair<iterator, bool> emplace_at_position(const_iterator pos, |
| 1039 | Args&&... args) { |
| 1040 | return insert_at_position(pos, value_type(std::forward<Args>(args)...)); |
| 1041 | } |
| 1042 | |
| 1043 | template <class K, class... Args> |
| 1044 | std::pair<iterator, bool> try_emplace_at_position(const_iterator pos, K&& key, |
nothing calls this directly
no outgoing calls
no test coverage detected