Help for this page

Select Code to Download


  1. or download this
    my %handlers = (
        ContentHandler => {
    ...
    my $cb = $handlers{ContentHandler};
    ... = $cb->();
    #... = $cb->(...);
    
  2. or download this
    my %handlers = (
        ContentHandler => {
    ...
    
    my $method = $handlers{ContentHandler};
    ... = $self->{object}->$method(...);
    
  3. or download this
    my %handlers = (
        ContentHandler => {
    ...
    
    my $method = $handlers{ContentHandler};
    ... = $self->{object}->$method(...);