David L. Nicol <[EMAIL PROTECTED]> wrote:
> Yes, exactly.  I would like to have a transpose operator, which
> will work on a list of hash refs, so this:
> 
> $solids = [1..7];
> $stripes = [9..15];
> foreach (transpose($solids,$stripes));
> print "the $_->[0] ball is the same color as the $_->[1]\n";

RFC 272 proposes a transpose function:
  http://dev.perl.org/rfc/272.html

Also see the proposal for merge():
  http://dev.perl.org/rfc/90.html


Reply via email to