- or download this
while( my $next = $iter->() ) {
my @next = @$next;
...
}
- or download this
while( my @next = @{ $iter->() } ) {
...
}
- or download this
while( my $next = $iter->() ) {
($next) = @$next;
...
}
- or download this
while( my $next = @{ $iter->() } ) {
...
}
- or download this
while( my ($next) = $iter->() ) {
...
}