- or download this
bool next(Type& arg) {
if (...) {
...
while (i->next(arg)) {
...
}
- or download this
sub next {
my $self = $_[0];
...
while ($i->next($arg)) {
...
}
- or download this
sub next {
my ($self) = @_;
...
while (my ($arg) = $i->next()) {
...
}
- or download this
while (my $arg = $i->next()) {
...
}