Help for this page

Select Code to Download


  1. or download this
    # This AUTOLOAD is used to 'autoload' constants from the constant() XS
    + function.
    sub AUTOLOAD {
        my $constname;
    ...
        }
        goto &$AUTOLOAD;
    }
    
  2. or download this
    foreach my $constname (@constants) {
        {
            no strict 'refs';
    ...
              }
        }
    }