Help for this page

Select Code to Download


  1. or download this
    ### Iterate.pl
    use strict;
    ...
    while (defined($file = NEXTVAL($WrappedXml_file))) 
        print $file;
    }
    
  2. or download this
    ### Iterator_Utils.pm
    package Iterator_Utils;
    ...
    sub NEXTVAL { $_[0]->() }
    sub Iterator (&) { return $_[0] }
    1;