in reply to Re: Re: What's the idiom for finding and removing the found @ARRAY element?
in thread What's the idiom for finding and removing the found @ARRAY element?

Sure, that's what curly braces are for. (Well, one of the many things.)
for my $i ( reverse 0 .. $#{ $ar } ) { splice @{ $ar }, 0, $i; }
  • Comment on Re: Re: Re: What's the idiom for finding and removing the found @ARRAY element?
  • Download Code