Tagged Questions
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
484 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 ...