Skip to content

Commit

Permalink
Cross meta operator
Browse files Browse the repository at this point in the history
Some of the meta operator documentation is repeated in the infix operator sections. This makes the cross section match the other meta operators, though.
  • Loading branch information
dbrunton committed Jan 16, 2016
1 parent 28d006b commit f614b01
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion doc/Language/operators.pod
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,13 @@ quote it with C<[]> (e.g. C<[\[\x]]>).
say $lazy[^10]; # (1 3 6 10 15 21 28 36 45 55)
=head2 Cross Operators
TODO
The cross metaoperator, C<X>, will apply a given infix operator in order of
cross product to all lists, such that the rightmost operator varies most
quickly.
1..3 X~ <a b>
# produces <1a, 1b, 2a, 2b, 3a, 3b>
=head2 Zip Operators
Expand Down

0 comments on commit f614b01

Please sign in to comment.