Moose::Autobox::Item - the Item role


Moose-Autobox documentation Contained in the Moose-Autobox distribution.

Index


Code Index:

NAME

Top

Moose::Autobox::Item - the Item role

DESCRIPTION

Top

This is the root of our role hierarchy.

METHODS

Top

meta
dump

Calls Data::Dumper::Dumper.

perl

Same as dump. For symmetry with Perl6's .perl method.

Like &print with newline.

print2

REQUIRED METHODS

Top

defined

BUGS

Top

All complex software has bugs lurking in it, and this module is no exception. If you find a bug please either email me, or add the bug to cpan-RT.

AUTHOR

Top

Stevan Little <stevan@iinteractive.com>

COPYRIGHT AND LICENSE

Top


Moose-Autobox documentation Contained in the Moose-Autobox distribution.

package Moose::Autobox::Item;     
use Moose::Role 'requires';

our $VERSION = '0.11';

requires 'defined';

sub dump {
    my $self = shift;
    require Data::Dumper;
    return Data::Dumper::Dumper($self);
}

*perl = \&dump;

1;

__END__