Skip to content
Snippets Groups Projects
Commit 1acea988 authored by Rainer Kartmann's avatar Rainer Kartmann
Browse files

Move functions to simox::alg (keep legacy versions in simox::)

parent c4c1fb72
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,7 @@
#include <vector>
namespace simox
namespace simox::alg
{
/// Get the keys of `map` in a vector.
template <class K, class V, template<class...> class Template = std::map, class...Ts>
......@@ -65,3 +65,30 @@ namespace simox
return values;
}
}
// Legacy definitions in old (general) namespace.
namespace simox
{
template <class K, class V, template<class...> class MapT = std::map, class...Ts>
std::vector<K> get_keys(const MapT<K, V, Ts...>& map)
{
return simox::alg::get_keys(map);
}
template <class K, class V, template<class...> class MapT = std::map, class...Ts>
std::set<K> get_keys_set(const MapT<K, V, Ts...>& map)
{
return simox::alg::get_keys_set(map);
}
template <class K, class V, template<class...> class MapT = std::map, class...Ts>
std::vector<V> get_values(const MapT<K, V, Ts...>& map)
{
return simox::alg::get_values(map);
}
template <class R, class K, class V, template<class...> class MapT = std::map, class...Ts>
std::vector<V> get_values(const MapT<K, V, Ts...>& map, std::function<R(const V&)> unary_func)
{
return simox::alg::get_values(map, unary_func);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment