in reply to Re: How can I avoid code repetition here
in thread How can I avoid code repetition here
I think this would (in the case $change_in_place && $default_argument) change only a copy of $_, not $_ itself. Maybe one could somehow use a foreach loop iterating over a one-element list, but I don't see how this would work in the general case.my $str = $change_in_place && $default_argument ? $_ : $_[0]; $str =~ s/^($lchompstr)*//; $_[0]; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How can I avoid code repetition here
by JadeNB (Chaplain) on Oct 17, 2009 at 21:35 UTC |