27 template <
typename K,
typename V>
28 static const std::vector<K>
getKeySet(
const std::map<const K, const V>& m)
32 for (
const auto& e : m) {
39 template <
typename K,
typename V>
40 static const std::vector<V>
getValueSet(
const std::map<const K, const V>& m)
44 for (
const auto& e : m) {
45 v.push_back(e.second);
static const std::vector< K > getKeySet(const std::map< const K, const V > &m)
static const std::vector< V > getValueSet(const std::map< const K, const V > &m)