// Shared arity expansion macro used by handler, callback, pipeline,
// template, dag, and system modules.
macro_rules! all_tuples {
($m:ident) => {
$m!(P0);
$m!(P0, P1);
$m!(P0, P1, P2);
$m!(P0, P1, P2, P3);
$m!(P0, P1, P2, P3, P4);
$m!(P0, P1, P2, P3, P4, P5);
$m!(P0, P1, P2, P3, P4, P5, P6);
$m!(P0, P1, P2, P3, P4, P5, P6, P7);
};
}