Perl 6 Cool operators in Perl 6 #15
 # build a hash of card names to point values
 my %points = @deck Z @( (2..10, 10, 10, 10, 11) >>xx>> 4 );

                         (2..10, 10, 10, 10, 11) >>xx>> 4 

This applies xx 4 to each element on the left hand side, repeating it four times

[(2, 2, 2, 2), (3, 3, 3, 3), (4, 4, 4, 4), (5, 5, 5, 5), ... ]
Copyright © 2009
http://www.pmichaud.com/2009/pres/