Help for this page

Select Code to Download


  1. or download this
    our @EXPORT = do {
        no strict 'refs';
    ...
            defined &$_
        } keys %{ __PACKAGE__ . '::'};
    };
    
  2. or download this
    our @EXPORT = do {
        no strict 'refs';
    ...
            defined &$_ and not /^_/;
        } keys %{ __PACKAGE__ . '::'};
    };