Help for this page

Select Code to Download


  1. or download this
    my @dispatch_table = (
      {
    ...
        action => sub { push @{shift->{items}}, \@_ },
      },
    );
    
  2. or download this
    foreach my $h (@dispatch_table) {
      if (my @m = $line =~ $h->{re}) {
    ...
        next LINE;
      }
    }