Bread-Board-LazyLoader
view release on metacpan or search on metacpan
lib/Bread/Board/LazyLoader/Obj.pm view on Meta::CPAN
#use Bread::Board::LazyLoader::Container;
use Carp qw(confess);
# default name
has name => ( is => 'ro', required => 1, default => 'Root' );
# remember the subs returned from builder files
has cache_codes => ( is => 'ro', default => 1 );
# builders (files and codes) for current container
has builders => ( is => 'ro', isa => 'ArrayRef', default => sub { [] }, );
has container_class => (
is => 'ro',
default => 'Bread::Board::Container',
);
sub get_builder_paths {
my $this = shift;
my $prefix = shift // '';
( run in 0.793 second using v1.01-cache-2.11-cpan-5f2e87ce722 )