Help for this page
sub import { ... $registry->$_( shift(@_) ); } elsif( ... ) { ...
$registry->$_( shift(@_) );
17:43 >perl -wE "f(1, 2, 3); sub f { local($_) = shift(@_); my $c = sh +ift(@_); say '$_ = ', $_; say '$c = ', $c; say '@_ = ', @_; }" $_ = 1 ... @_ = 3 18:07 >