Skip to content

Commit 7ac403e

Browse files
committed
Add mention of eventual parallelizing superpowers
1 parent a0dfc2d commit 7ac403e

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

doc/Language/operators.pod

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1951,6 +1951,11 @@ previous method call. With feed operators, that restriction is gone.
19511951
The resulting code could also be seen to be more readable than a series of
19521952
method calls broken over multiple lines.
19531953
1954+
Note: In the future, this operator will see some change as it gains the
1955+
ability to run list operations in parallel. It will enforce that the
1956+
B<left> operand is enclosable as a closure (that can be cloned and run in
1957+
a subthread).
1958+
19541959
=head2 infix C«<==»
19551960
19561961
This X<leftward feed> operator takes the result from the right and passes
@@ -1996,6 +2001,11 @@ to "break into" the statement and capture an intermediary result which
19962001
can be extremely useful for debugging or to take that result and create
19972002
another variation on the final result.
19982003
2004+
Note: In the future, this operator will see some change as it gains the
2005+
ability to run list operations in parallel. It will enforce that the
2006+
B<right> operand is enclosable as a closure (that can be cloned and run in
2007+
a subthread).
2008+
19992009
=end pod
20002010

20012011
# vim: expandtab shiftwidth=4 ft=perl6

0 commit comments

Comments
 (0)