40 #ifndef TPETRA_ASSEMBLY_HELPERS_HPP
41 #define TPETRA_ASSEMBLY_HELPERS_HPP
49 template <
typename... Args>
50 inline void foreach_pack(Args &&... args) {}
53 template <
typename... Args>
54 void beginFill(Args &&... args)
58 Impl::foreach_pack( (args.beginFill(),1)... );
64 template <
typename... Args>
65 void endFill(Args &&... args)
69 Impl::foreach_pack( (args.endFill(),1)... );
78 #endif // TPETRA_ASSEMBLY_HELPERS_HPP