see this
DB<168> sub tst (&@) { my $cr=shift; print $cr->($_)," " for @_ } DB<169> use feature 'state'; tst {state $i++} 1..3 for 1..3 => "" 0 1 2 0 1 2 0 1 2
The blocks of map and grep are no anonymous subroutines as Tobyink pointed out recently.
IMHO thats why scoping fails in your tests.
DB<173> use feature 'state'; map {state $i++; print "$i "} 1..3 for +1..3 => "" 1 2 3 4 5 6 7 8 9
(at least with 5.10)
also while conditions
DB<195> use feature 'state'; for (1..3) { $y=0;while (++(my $x)) { p +rint " $x .";last if $y++>3 } } => "" 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . 1 . DB<196> use feature 'state'; for (1..3) { $y=0;while (++(state $x)) +{ print " $x .";last if $y++>3 } } => "" 1 . 2 . 3 . 4 . 5 . 6 . 7 . 8 . 9 . 10 . 11 . 12 . 13 . 14 . 15 .
Cheers Rolf
( addicted to the Perl Programming Language)
In reply to Re^3: adding items, but with interim results
by LanX
in thread adding items, but with interim results
by kontrapunktstefan
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |