Cross operators


Cross operators

examples/arrays/cross_operators.p6
#!/usr/bin/perl6
use v6;

my @x = (1, 2) X+ (4, 7);
say @x.perl;        # [5, 8, 6, 9]


my @y = 1, 2 X+ 4, 7;
say @y.perl;        # [5, 8, 6, 9]


my @str = 1, 2 X~ 4, 7;
say @str.perl;        # ["14", "17", "24", "27"]

# without any special operator  (is the same what X, should be)
my @z = 1, 2 X 4, 7;
say @z.perl;          # [1, 4, 1, 7, 2, 4, 2, 7]

Copyright 2006, 2007, 2008, 2009, 2010 Gabor Szabo http://szabgab.com/ Index | TOC
If you are interested in on-site trainings by the author, please contact me directly.

Online courses:

Would you like to get
updated when I publish
the next article?

Follow me:

Google Plus Twitter RSS feed