Skip to content
Snippets Groups Projects
Commit 8f5d503d authored by Fabian Reister's avatar Fabian Reister
Browse files

simox::alg::apply for sets

parent 1b40cd32
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
#include <algorithm>
#include <map>
#include <set>
#include <type_traits>
#include <vector>
......@@ -21,6 +22,18 @@ namespace simox::alg
return result;
}
template <typename ValueIn, typename UnaryOp>
std::vector<std::invoke_result_t<UnaryOp, ValueIn>>
apply(const std::set<ValueIn>& set, const UnaryOp& op)
{
using ValueOut = std::invoke_result_t<UnaryOp, ValueIn>;
std::vector<ValueOut> result;
result.reserve(set.size());
std::transform(set.begin(), set.end(), std::back_inserter(result), op);
return result;
}
template <typename Key, typename ValueIn, typename UnaryOp>
std::map<Key, std::invoke_result_t<UnaryOp, ValueIn>>
......
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