-Moose::Autobox version 0.01
+Moose::Autobox version 0.02
===========================
See the individual module documentation for more information
autobox
Moose
+ Perl6::Junction
COPYRIGHT AND LICENCE
+---------------------
+
Add create() to Moose::Meta::Class to allow for roles to be passed in.
-Change Moose::Autobox->import() to use that instead of an eval.
\ No newline at end of file
+Change Moose::Autobox->import() to use that instead of an eval.
+
+---------------------
+
+get ::Code::dump working with Data::Dump::Streamer
use Perl6::Junction;
use autobox;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
with 'Moose::Autobox::Ref',
'Moose::Autobox::List',
print "Squares: " . [ 1 .. 10 ]->map(sub { $_ * $_ })->join(', ');
print [ 1, 'number' ]->sprintf('%d is the loneliest %s');
+
+ print ([ 1 .. 5 ]->any == 3) ? 'true' : 'false'; # prints 'true'
=head1 DESCRIPTION
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
-=cut
\ No newline at end of file
+=cut
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
-=cut
\ No newline at end of file
+=cut
package Moose::Autobox::Ref;
use Moose::Role 'with';
-our $VERSION = '0.01';
+our $VERSION = '0.02';
with 'Moose::Autobox::Defined';