Help for this page

Select Code to Download


  1. or download this
      my $iterator = $fc->scan_blah_files;
      while ($iterator->next_file) {
    ...
        print $file . "\n";
      }
    }
    
  2. or download this
    sub AUTOLOAD {
      our $AUTOLOAD;
    ...
        return @{$s->{$type.'_files'}};                 # return file subs
    +et
      }
    }