3#ifndef DUNE_AMG_COMBINEDFUNCTOR_HH
4#define DUNE_AMG_COMBINEDFUNCTOR_HH
13 template<std::
size_t i>
16 template<
class TT,
class T>
17 static void apply(TT tuple,
const T& t)
19 std::get<i-1>(tuple) (t);
20 ApplyHelper<i-1>::apply(tuple, t);
26 template<
class TT,
class T>
27 static void apply([[maybe_unused]] TT tuple, [[maybe_unused]]
const T& t)
32 class CombinedFunctor :
36 CombinedFunctor(
const T& tuple_)
41 void operator()(
const T1& t)
43 ApplyHelper<std::tuple_size<T>::value>::apply(*
this, t);
Dune namespace.
Definition: alignedallocator.hh:11