Help for this page

Select Code to Download


  1. or download this
    my $method = $method_and_structure[@method_and_structure-1];
    
  2. or download this
    my $method = $method_and_structure[-1];
    
  3. or download this
    my $method = (split '::', $AUTOLOAD)[-1];
    
    ...
    ####
    
    (my $method = $AUTOLOAD) =~ s/.*:://;