You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Yes, I would lean towards using lambdas, but sometimes capturing and forwarding arguments gets messy. Note that I made the inner lambda mutable to support non-const "functors" as you called them.
#include<boost/hana.hpp>
#include<iostream>namespacehana= boost::hana;
structfunctor_1 {
voidoperator() (std::string arg1, std::string arg2)
{
std::cout << arg1 << arg2 << " from first functor" << '\n';
}
};
structfunctor_2 {
voidoperator() (std::string arg1, std::string arg2)
{
std::cout << arg1 << arg2 << " from second functor" << '\n';
}
};
auto join = [](auto&& ...fn) {
auto fns = hana::make_tuple(static_cast<decltype(fn)>(fn)...);
return [fns = std::move(fns)](auto&& ...args) mutable {
returnhana::for_each(
fns, hana::reverse_partial(hana::apply, static_cast<decltype(args)>(args)...));
};
#if0 // Never go full demux.
return hana::demux(hana::compose(hana::reverse_partial(hana::for_each, hana::apply),
hana::partial(hana::transform, std::move(fns))))
(hana::capture);
#endif
};
intmain() {
join(functor_1(), functor_2())("Hello, ", "World!"); // will print two lines:
}
I'm finding something like this:
Is it possible to do using boost.hana?
The text was updated successfully, but these errors were encountered: