package Frost::Illuminator; # LIBS # use Moose; extends 'Frost::Burial'; use Frost::Util; # CLASS VARS # our $VERSION = 0.62; our $AUTHORITY = 'cpan:ERNESTO'; # CLASS METHODS # sub suffix { '.ill' } # PUBLIC ATTRIBUTES # # PRIVATE ATTRIBUTES # # CONSTRUCTORS # sub _build_numeric { my $type = find_type_constraint_manuel $_[0]->classname, $_[0]->slotname; ( ( defined $type ) and $type->is_a_type_of ( 'Num' ) ? true : false ); # return 'real' boolean } sub _build_unique { my $attr = find_attribute_manuel $_[0]->classname, $_[0]->slotname; ( $attr->is_unique() ? true : false ); # return 'real' boolean } # DESTRUCTORS # # PUBLIC METHODS # sub collect { shift()->entomb ( @_ ); } # lookup is called from outside, i.e. via Frost::Asylum::lookup # sub lookup { my ( $self, $key ) = @_; return ( wantarray ? () : '' ) unless $self->_check_key ( $key ); $self->exhume ( $key ); } # PRIVATE METHODS # # CALLBACKS # # IMMUTABLE # no Moose; __PACKAGE__->meta->make_immutable ( debug => 0 ); 1; __END__ =head1 NAME Frost::Illuminator - Essence roster =head1 ABSTRACT No documentation yet... =head1 DESCRIPTION No user maintainable parts inside ;-) =for comment CLASS VARS =head1 CLASS METHODS =head2 Frost::Illuminator->suffix() Returns '.ill' =for comment PUBLIC ATTRIBUTES =for comment PRIVATE ATTRIBUTES =head1 CONSTRUCTORS =head2 Frost::Illuminator->new ( %params ) =head2 _build_numeric =head2 _build_unique =for comment DESTRUCTORS =head1 PUBLIC METHODS =head2 collect =head2 lookup =for comment PRIVATE METHODS =for comment CALLBACKS =for comment IMMUTABLE =head1 GETTING HELP I'm reading the Moose mailing list frequently, so please ask your questions there. The mailing list is L. You must be subscribed to send a message. To subscribe, send an empty message to L =head1 BUGS All complex software has bugs lurking in it, and this module is no exception. Please report any bugs to me or the mailing list. =head1 AUTHOR Ernesto L =head1 COPYRIGHT AND LICENSE Copyright (C) 2010 by Dienstleistung Kultur Ltd. & Co. KG L This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut