Skip to content

Commit

Permalink
fossil dug up by Util++
Browse files Browse the repository at this point in the history
  • Loading branch information
TimToady committed Nov 16, 2011
1 parent 59b0ea5 commit 421501c
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions S03-operators.pod
Expand Up @@ -15,8 +15,8 @@ Synopsis 3: Perl 6 Operators

Created: 8 Mar 2004

Last Modified: 11 Oct 2011
Version: 231
Last Modified: 16 Nov 2011
Version: 232

=head1 Overview

Expand Down Expand Up @@ -2839,8 +2839,9 @@ C<x> splits into two operators: C<x> (which concatenates repetitions
of a string to produce a single string), and C<xx> (which creates a list of
repetitions of a list or item). C<"foo" xx *> represents an arbitrary
number of copies, useful for initializing lists. The left side of
an C<xx> is evaluated only once. (To call a block repeatedly, use a C<map>
instead.)
an C<xx> is re-evaluated for each copy; use a temporary to force a single
evaluation. (But note that this is not necessary when the optimizer will
do constant folding.)

=item *

Expand Down

0 comments on commit 421501c

Please sign in to comment.