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


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

Apart from kappa's points: read my root node update. Here's what that would look like with a good interface:

my $s = Scope->new( 'probe' => $netlist ); $s->anatrace( in => [ 'System input', 'active', 1 ], out_1 => [ 'Lpf bank1', 'active', 1 ], out_2 => [ 'Lpf bank2', 'active', 1024 ], out => [ 'System output', 'active', 1 ], bank2 => [ 'Switch pos', 'active', 1 ], ); $s->generate();

Makeshifts last the longest.