: 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;

Reduce operators only turn infix into list operators.  What you really
want here is a hyper-fatarrow:

    my %h = @k »=>« @v;


Gaal pointed out using zip.  What would be the difference then between a
hyper-fatarrow and zip in this case?


Michael

Reply via email to