Help for this page

Select Code to Download


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