| 4042 | // safety strong otherwise |
| 4043 | |
| 4044 | template <class InputIt> void insert_range(InputIt i, InputIt j) |
| 4045 | { |
| 4046 | if (i != j) |
| 4047 | return insert_range_impl(extractor::extract(*i), i, j); |
| 4048 | } |
| 4049 | |
| 4050 | template <class InputIt> |
| 4051 | void insert_range_impl(const_key_type& k, InputIt i, InputIt j) |
nothing calls this directly
no test coverage detected