| 855 | // Note: any initial contents of the value_container are not cleared. |
| 856 | template <class MapContainer, class ValueContainer> |
| 857 | void AppendValuesFromMap(const MapContainer& map_container, |
| 858 | ValueContainer* value_container) { |
| 859 | CHECK(value_container != NULL); |
| 860 | for (typename MapContainer::const_iterator it = map_container.begin(); |
| 861 | it != map_container.end(); ++it) { |
| 862 | value_container->push_back(it->second); |
| 863 | } |
| 864 | } |
| 865 | |
| 866 | template <class MapContainer, class ValueContainer> |
| 867 | void EmplaceValuesFromMap(MapContainer&& map_container, |
nothing calls this directly
no test coverage detected