1 #ifndef MHO_ArgumentCarrier_HH__
2 #define MHO_ArgumentCarrier_HH__
Variadic base that stores an operator's typed arguments (pointers expected) in a tuple and exposes a ...
Definition: MHO_ArgumentCarrier.hh:22
std::tuple< Args... > fArgs
Definition: MHO_ArgumentCarrier.hh:24
auto Apply(Func &&func) -> decltype(mho_tuple_apply(std::forward< Func >(func), fArgs))
Definition: MHO_ArgumentCarrier.hh:26
Class MHO_Operator.
Definition: MHO_Operator.hh:21
Definition: MHO_AdhocFlagging.hh:18
auto mho_tuple_apply(Func &&f, Tuple &&t) -> decltype(mho_tuple_apply_impl(std::forward< Func >(f), std::forward< Tuple >(t), typename mho_make_index_sequence< std::tuple_size< typename std::decay< Tuple >::type >::value >::type{}))
Definition: MHO_Meta.hh:359