http://www.perlmonks.org?node_id=417984


in reply to Re: Mutator chaining considered harmful
in thread Mutator chaining considered harmful

This gives you almost nothing in comparison with:
... $s->anatrace('bank2', 'Switch pos', 'active', 1); $s->generate();
And when the objects have long names or are expressions you can always:
for (Scope->new('probe' => $netlist)) { $_->anatrace('in', 'System input', 'active', 1); ... $_->generate(); }
--kap