Tagged Questions
4
votes
1answer
152 views
Do I need Exporter if I'm going for pure OO in Perl?
The docs (Exporter and perlmodlib) say:
As a general rule, if the module is
trying to be object oriented then
export nothing.
But then perlmodlib also says:
Standard, bundled modules are ...
3
votes
3answers
980 views
How do I export Readonly variables with mod_perl?
I'm trying to make it easier to follow some Perl Best Practices by creating a Constants module that exports several of the scalars used throughout the book. One in particular, $EMPTY_STRING, I can ...
1
vote
4answers
44 views
imported perl variable imports with no value
SOLVED: As it turns out, my problem was rooted in the fact that I was not putting a $ in front of DEBUGVAR in the @EXPORT_OK assignment and the "use config_global qw(config DEBUGVAR);" line. Since it ...
1
vote
1answer
67 views
How can I export a function with Moose::Exporter?
I wanted to export a simple function from a base class that I use all over my sub classes without having to use $self->myfunc() all the time, just a simple func() call.
I tried doing this with the ...
1
vote
2answers
233 views
Why can't I call my exported subroutine in my Perl program?
I am new to Perl and I face following issue, having no clue why following is not working.
My Perl module contains:
package PACK2;
use Exporter;
@ISA = ('Exporter');
@EXPORT_OK=('whom');
sub why(){
...
1
vote
3answers
689 views
How can I share variables between a base class and subclass in Perl?
I have a base class like this:
package MyClass;
use vars qw/$ME list of vars/;
use Exporter;
@ISA = qw/Exporter/;
@EXPORT_OK = qw/ many variables & functions/;
%EXPORT_TAGS = (all => ...
1
vote
2answers
482 views
Moose: Extending Exporter causes constructor to disappear?
Here's something weird that I can't figure out. I have a Moose class that I also want to export some constants, using the age-old standard Exporter module. However, as soon as I add extends Exporter ...
1
vote
3answers
316 views
How do I rename an exported function in Perl?
I have some Perl modules which exports various functions. (We haven't used @EXPORT in new modules for some years, but have retained it for compatibility with old scripts.)
I have renamed a number of ...
1
vote
3answers
183 views
What's the best way to have two modules which use functions from one another in Perl?
Unfortunately, I'm a totally noob when it comes to creating packages, exporting, etc in Perl. I tried reading some of the modules and often found myself dozing off from the long chapters. It would be ...
0
votes
1answer
317 views
Export a hash from a module to a script
refering back to this thread, I'm strugglying with the way how to export datas from my module. One way is working but not the other one which I would like to implement.
The question is why the ...