Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re^3: Joining Arrays? (perl6)

by TimToady (Parson)
on Dec 23, 2008 at 02:25 UTC ( [id://732226]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Joining Arrays? (perl6)
in thread Joining Arrays?

Such cross-like operations are common enough that there is also a cross meta-operator in Perl 6 to trick an ordinary binary operator into doing it. So instead of saying:
my @combined = (@urls X @ids).map: {$^a ~ $^b};
you can just say
my @combined = @urls X~ @ids;
That is, just put X in front of the ordinary operator to make it a cross operator.

Update: changed old X~X form to new X~ form.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://732226]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (3)
As of 2024-04-25 07:38 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found