in reply to Re: any way to fill calling namespace with a "use Module"?
in thread any way to fill calling namespace with a "use Module"?

Wow! I didn't think of using BUILD that way. That's exactly what I'm looking for. (I'll write an experiment for this) Do you have to invoke use SubordinateA; use SubordinateB; in the invoking environment or ??? I suppose I can work around that...


Peter L. Berghold -- Unix Professional
Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg

Replies are listed 'Best First'.
Re^3: any way to fill calling namespace with a "use Module"?
by tobyink (Canon) on Feb 23, 2013 at 22:54 UTC
    my $class = "Subordinate" . $self->letter; Class::Load::load_class($class);

    Class::Load is a dependency of Moose, so you're already using it.

    package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name