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