Help for this page

Select Code to Download


  1. or download this
    package Foo;
    sub new { 
    ...
        &_handle_parsed_href( $parsed_href );
    }
    
  2. or download this
    sub _handle_parsed_href {
      my ( $self, $parsed_href ) = @_;
      push @{$self->{PARSED}}, $parsed_href;
    }