Help for this page

Select Code to Download


  1. or download this
    my $i = $foo->get_big_list;
    while (my $element = $i->next) {
        # do stuff to $element
    };
    
  2. or download this
    # in your class
    sub apply_to_elements {
    ...
      my $element = shift;
      # do stuff to $element
    } );