Search results for "module:Exporter"

Exporter - Implements default import method for modules River stage five • 2637 direct dependents • 32646 total dependents

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.78 - 30 Dec 2023 21:13:29 UTC

Exporter::VA - Improved Exporter featuring Versioning and Aliasing. River stage zero No dependents

This 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 UTC

PDL::Exporter - PDL export control River stage three • 93 direct dependents • 101 total dependents

Implements 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.085 - 30 Jan 2024 04:23:50 UTC

Sub::Exporter - a sophisticated exporter for custom-built routines River stage four • 334 direct dependents • 5667 total dependents

ACHTUNG! 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.991 - 24 Nov 2023 01:32:32 UTC

Exporter::Lite - lightweight exporting of functions and variables River stage three • 59 direct dependents • 180 total dependents

Exporter::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. Exporter::Lite simply exports its import() functi...

NEILB/Exporter-Lite-0.09 - 03 Mar 2022 10:06:41 UTC

Exporter::Easy - Takes the drudgery out of Exporting symbols River stage two • 29 direct dependents • 43 total dependents

Exporter::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 UTC

Exporter::Tiny - an exporter with the features of Sub::Exporter but only core dependencies River stage four • 132 direct dependents • 5014 total dependents

Exporter::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.006002 - 31 Mar 2023 14:41:26 UTC

SIOC::Exporter - SIOC RDF exporter class River stage zero No dependents

This 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 UTC

Exporter::Auto - export all public functions from your package River stage one • 2 direct dependents • 2 total dependents

Exporter::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 UTC

Exporter::Tidy - Another way of exporting symbols River stage two • 19 direct dependents • 43 total dependents

This 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 UTC

Mouse::Exporter - make an import() and unimport() just like Mouse.pm River stage three • 229 direct dependents • 558 total dependents

This 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 UTC

Const::Exporter - Declare constants for export. River stage two • 8 direct dependents • 14 total dependents

This 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.2.3 - 11 Jun 2023 10:02:24 UTC

Exporter::Proxy - Simplified symbol export & proxy dispatch. River stage zero No dependents

This 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 UTC

Class::Exporter - Export class methods as regular subroutines River stage zero No dependents

This 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 UTC

Exporter::Handy - An EXPERIMENTAL subclass of <Exporter::Extensible>, which helps create easy-to-extend modules that export symbols River stage zero No dependents

This module is currently EXPERIMENTAL. You are advised to restrain from using it. You have been warned....

TABULO/Exporter-Handy-1.000004 - 29 May 2023 07:42:38 UTC

Exporter::Shiny - shortcut for Exporter::Tiny River stage four • 132 direct dependents • 5014 total dependents

This 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.006002 - 31 Mar 2023 14:41:26 UTC

Exporter::Rinci - A simple wrapper for Exporter for modules with Rinci metadata River stage two • 19 direct dependents • 50 total dependents

Exporter::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 UTC

Exporter::Heavy - Exporter guts River stage five • 2637 direct dependents • 32646 total dependents

No user-serviceable parts inside....

TODDR/Exporter-5.78 - 30 Dec 2023 21:13:29 UTC

Moose::Exporter - make an import() and unimport() just like Moose.pm River stage four • 2916 direct dependents • 4004 total dependents

This 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.2207 - 21 Jan 2024 01:10:45 UTC

Exporter::Simple - Easier set-up of module exports River stage one • 2 direct dependents • 2 total dependents

This 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
165 results (0.026 seconds)