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

swapping args of simox::alg::apply

parent 4ee06f32
No related branches found
No related tags found
No related merge requests found
......@@ -11,10 +11,12 @@ namespace simox::alg
template <typename ValueIn, typename UnaryOp>
std::vector<std::invoke_result_t<UnaryOp, ValueIn>>
apply(const UnaryOp& op, const std::vector<ValueIn>& vector)
apply(const std::vector<ValueIn>& vector, const UnaryOp& op)
{
using ValueOut = std::invoke_result_t<UnaryOp, ValueIn>;
std::vector<ValueOut> result;
result.reserve(vector.size());
std::transform(vector.begin(), vector.end(), std::back_inserter(result), op);
return result;
}
......@@ -22,7 +24,7 @@ namespace simox::alg
template <typename Key, typename ValueIn, typename UnaryOp>
std::map<Key, std::invoke_result_t<UnaryOp, ValueIn>>
apply(const UnaryOp& op, const std::map<Key, ValueIn>& map)
apply(const std::map<Key, ValueIn>& map, const UnaryOp& op)
{
using ValueOut = std::invoke_result_t<UnaryOp, ValueIn>;
std::map<Key, ValueOut> result;
......@@ -35,4 +37,3 @@ namespace simox::alg
}
......@@ -91,13 +91,13 @@ namespace simox::color
template <typename V>
std::vector<Color> operator()(const std::vector<V>& vector) const
{
return simox::alg::apply(*this, vector);
return simox::alg::apply(vector, *this);
}
/// Apply this colormap to a map's values.
template <typename K, typename V>
std::map<K, Color> operator()(const std::map<K, V>& map) const
{
return simox::alg::apply(*this, map);
return simox::alg::apply(map, *this);
}
......
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