| Moose-Autobox documentation | Contained in the Moose-Autobox distribution. |
Moose::Autobox::Item - the Item role
This is the root of our role hierarchy.
Calls Data::Dumper::Dumper.
Same as dump. For symmetry with Perl6's .perl method.
Like &print with newline.
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.
Stevan Little <stevan@iinteractive.com>
Copyright 2006-2008 by Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
| 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__