develooper Front page | perl.perl6.language | Postings from August 2006

Pair of lists => list of pairs?

Thread Next
From:
Mark J. Reed
Date:
August 23, 2006 14:44
Subject:
Pair of lists => list of pairs?
Message ID:
f60fe000608231443v4e2e80d2k4abb7072f49f1ff3@mail.gmail.com
Suppose I have two arrays @k and @v and I want to declare and initialize a
hash %h such that %h.keys eqv @k and %h.values eqv @v.

I could use a direct translation of the P5 idiom:

my %h;
%h{@k} = @v;

But is there an easy way in Perl6 to do it all in one go?  Should this work?

my %h = @k [=>] @v;

-- 
Mark J. Reed <markjreed@mail.com>

Thread Next


nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About