Help for this page
... my $method = $dispatch{ $command }; $self->$method( ); ...
my $method = $self->can( $dispatch( $command ) ); unless( defined $method ) { ... return; } $self->$method( );