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;
[EMAIL PROTECTED] = @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 <[EMAIL PROTECTED]>

Reply via email to