Help for this page

Select Code to Download


  1. or download this
    %dispatch = (
    foo => \&foo,
    ...
    {
      $dispatch{$method}->();
    }
    
  2. or download this
    package dispatch;
    sub foo {}
    ...
    {
      $ref->();
    }