42 #ifndef TPETRA_ASSEMBLY_HELPERS_HPP
43 #define TPETRA_ASSEMBLY_HELPERS_HPP
51 template <
typename... Args>
52 inline void foreach_pack(Args &&... args) {}
55 template <
typename... Args>
56 void beginFill(Args &&... args)
60 Impl::foreach_pack( (args.beginFill(),1)... );
66 template <
typename... Args>
67 void endFill(Args &&... args)
71 Impl::foreach_pack( (args.endFill(),1)... );
80 #endif // TPETRA_ASSEMBLY_HELPERS_HPP