...
Code Block | ||||
---|---|---|---|---|
| ||||
# use UNIVERSAL qw(can); # deprecated # ... sub doit { my ($func) = @_; if (can($self, $self->can($func)) { $self->$func(); } # ... } |
...
...
Code Block | ||||
---|---|---|---|---|
| ||||
# use UNIVERSAL qw(can); # deprecated # ... sub doit { my ($func) = @_; if (can($self, $self->can($func)) { $self->$func(); } # ... } |
...