The Exporter module implements an "import" method which allows a module to export functions and variables to its users' namespaces. Many modules use Exporter rather than implementing their own "import" method because Exporter provides a highly flexib...
TODDR/Exporter-5.74 - 20 Jan 2020 07:31:23 UTCThis main incentive in creating this exporter is to allow modules to be updated and get rid of default exports in newer releases, while still maintaining compatibility with older code. What it Gives the Client's 'use' Statement If ModuleName gets its...
DLUGOSZ/Exporter-VA-1.3.0.1 - 27 Jan 2003 07:41:39 UTCACHTUNG! If you're not familiar with Exporter or exporting, read Sub::Exporter::Tutorial first! Why Generators? The biggest benefit of Sub::Exporter over existing exporters (including the ubiquitous Exporter.pm) is its ability to build new coderefs f...
RJBS/Sub-Exporter-0.987 - 18 Oct 2013 15:10:54 UTCImplements the standard conventions for import of PDL modules in to the namespace Hopefully will be extended to allow fine control of which namespace is used....
ETJ/PDL-2.025 - 19 Nov 2020 13:17:38 UTCThis module implements a SIOC exporter class. It will output the RDF representation of SIOC objects passed to it....
GEEWIZ/SIOC-v1.0.0 - 21 Mar 2008 21:25:06 UTCExporter::Lite is an alternative to Exporter, intended to provide a lightweight subset of the most commonly-used functionality. It supports "import()", @EXPORT and @EXPORT_OK and not a whole lot else. Unlike Exporter, it is not necessary to inherit f...
NEILB/Exporter-Lite-0.08 - 13 Jan 2016 19:38:24 UTCImplements the standard conventions for import of PDLA modules in to the namespace Hopefully will be extended to allow fine control of which namespace is used....
ETJ/PDLA-Core-2.019107 - 28 Apr 2019 20:28:44 UTCExporter::Easy makes using Exporter easy. In its simplest case, it allows you to drop the boilerplate code that comes with using Exporter, so require Exporter; use base qw( Exporter ); use vars qw( @EXPORT ); @EXPORT = ( 'init' ); becomes use Exporte...
NEILB/Exporter-Easy-0.18 - 11 Nov 2015 21:30:35 UTCExporter::Auto is a simple replacement for Exporter that will export all public functions from your package. If you want all functions to be exported from your module by default, then this might be the module for you. If you only want some functions ...
NEILB/Exporter-Auto-0.04 - 16 Aug 2014 18:46:54 UTCThis module serves as an easy, clean alternative to Exporter. Unlike Exporter, it is not subclassed, but it simply exports a custom import() into your namespace. With Exporter::Tidy, you don't need to use any package global in your module. Even the s...
JUERD/Exporter-Tidy-0.08 - 06 Jan 2015 11:27:47 UTCExporter::Tiny supports many of Sub::Exporter's external-facing features including renaming imported functions with the "-as", "-prefix" and "-suffix" options; explicit destinations with the "into" option; and alternative installers with the "install...
TOBYINK/Exporter-Tiny-1.002002 - 24 Apr 2020 15:42:35 UTCThis installs 'import' and 'exports' subroutines into the callers namespace. The 'import' does the usual deed: exporting symbols by name; 'exports' simplifies introspection by listing the exported symbols (useful for testing). The optional "dispather...
LEMBARK/Exporter-Proxy-1.008002 - 13 Apr 2018 18:22:05 UTCThis module encapsulates the exporting of sugar functions in a "Mouse.pm"-like manner. It does this by building custom "import", "unimport" methods for your module, based on a spec you provide. Note that "Mouse::Exporter" does not provide the "with_m...
SKAJI/Mouse-v2.5.10 - 28 Mar 2020 13:17:36 UTCThis module allows you to declare constants that can be exported to other modules. To declare constants, simply group then into export tags: package MyApp::Constants; use Const::Exporter tag_a => [ 'foo' => 1, 'bar' => 2, ], tag_b => [ 'baz' => 3, 'b...
RRWO/Const-Exporter-v1.1.1 - 17 Dec 2020 15:52:21 UTCThis is a very small wrapper to simplify using Exporter::Tiny. It does the following: * Marks your package as loaded in %INC; * Pushes any function names in the import list onto your @EXPORT_OK; and * Pushes "Exporter::Tiny" onto your @ISA. It doesn'...
TOBYINK/Exporter-Tiny-1.002002 - 24 Apr 2020 15:42:35 UTCExporter::Rinci is a simple wrapper for Exporter. Before handing out control to Exporter's import(), it will look at the exporting module's @EXPORT, @EXPORT_OK, and %EXPORT_TAGS and if they are empty will fill them out with data from Rinci metadata (...
PERLANCAR/Exporter-Rinci-0.030 - 16 Aug 2019 01:52:34 UTCThis module makes it much easier to make a module have a hybrid object/method interface similar to the one of CGI.pm. You can take any old module that has an object- oriented interface and convert it to have a hybrid interface by simply adding "use b...
SPLICE/Class-Exporter-0.03 - 13 Apr 2003 19:49:36 UTCNo user-serviceable parts inside....
TODDR/Exporter-5.74 - 20 Jan 2020 07:31:23 UTCThis module encapsulates the exporting of sugar functions in a "Moose.pm"-like manner. It does this by building custom "import" and "unimport" methods for your module, based on a spec you provide. It also lets you "stack" Moose-alike modules so you c...
ETHER/Moose-2.2014 - 19 Dec 2020 00:09:21 UTCThis module, when subclassed by a package, allows that package to define exports in a more concise way than using "Exporter". Instead of having to worry what goes in @EXPORT, @EXPORT_OK and %EXPORT_TAGS, you can use two attributes to define exporter ...
MARCEL/Exporter-Simple-1.10 - 21 Nov 2002 17:06:09 UTC