Help for this page

Select Code to Download


  1. or download this
    my $method_ref = $obj_or_class->can('method');
    
  2. or download this
    my $method_name = 'method';
    
  3. or download this
    $obj_or_class->$method_ref()
    
  4. or download this
    $obj_or_class->$method_name()
    
  5. or download this
    $ref = sub { $obj_or_class->new(@_) }