Help for this page

Select Code to Download


  1. or download this
    while (my $next = $iter->()) {
        # ...
        last if $iter->('exhausted');
    }
    
  2. or download this
    while (my $next = $iter{next}->()) {
        # ...
        last if $iter{exhausted}->();
    }