Hyperoperators (vector processing)
Perl 5:
# pairwise add elements of @a and @b to produce @c for ($i = 0; $i < @a; $i++) { $c[$i] = $a[$i] + $b[$i]; }continued...
Perl 6 | Cool operators in Perl 6 | #6 |
Perl 5:
# pairwise add elements of @a and @b to produce @c for ($i = 0; $i < @a; $i++) { $c[$i] = $a[$i] + $b[$i]; }continued...
Copyright © 2009 http://www.pmichaud.com/2009/pres/ |