I believe what is really wanted is for "for" to be able to iterate
over lists of arrays or hashes:

        for my @i ( @foo, @bar ) { ...

        for my %i ( %foo, %bar ) { ...

with real aliasing occuring.

If @_ and %_ are the default iterator variables, then imagine:

        for ( @argset1, @argset2 ) {
                &quux;

But I'm not convinced of the utility of this over using
scalar references.

-- 
John Porter

Reply via email to