| 681 | template <typename Map> |
| 682 | struct ValuesViewImpl : public detail::values_view { |
| 683 | explicit ValuesViewImpl(Map &map) : map(map) {} |
| 684 | size_t len() override { return map.size(); } |
| 685 | iterator iter() override { return make_value_iterator(map.begin(), map.end()); } |
| 686 | Map ↦ |
nothing calls this directly
no outgoing calls
no test coverage detected