ReadMe.pod
October 28, 2013 · View on GitHub
=encoding utf8
=head1 Name
Mo - Micro Objects. Mo is less.
=head1 Synopsis
package Less;
use Mo;
extends 'Nothing';
has something => ();
=head1 Description
use Mo. Mo is less. Much less.
Moose is huge. Moose led to Mouse led to Moo led to Mo. M is nothing. Mo is more. Not much.
When Moo is more than you need, drop an 'o' and get some Mo.
To get just a little Mo from Mo, use L
=head1 Core Features
This is what you get. Nothing Mo.
=over
=item C
Mo provides a C
Constructor will not call BUILD methods. This is available using the LMo::build feature.
=item C
Mo exports the C
Mo only supports single inheritance. If you need multiple inheritance or roles, you should upgrade to Moo.
=item C
Mo exports a C
These accessors always support both C
has name => ();
has thing => (foo => 'bar'); # arguments silently ignored
All arguments passed to C
=item C
Mo turns on C
=item Embeddable
Mo is tiny. It is compressed into a single line. You can easily inline it in your code, should you want to do that. See LMo::Inline for more information, including a utility that will do it for you.
=back
=head1 Mo Features
Mo is the bare minimum needed for Perl OO. Many times you'll want just a couple more features. Don't worry. Mo's got you covered:
use Mo qw'build default builder coerce is required';
has name1 => ( default => sub { 'Joe' } );
has name2 => ( builder => 'name_builder' );
has name3 => ( coerce => sub {$_[0]} );
has name4 => ( is => 'ro' );
has name4 => ( required => 1 );
sub BUILD {
my $self = shift;
...
}
Mo simply loads the feature classes LMo::build, LMo::default,
LMo::builder, LMo::coerce, LMo::is and LMo::required.
The first one supports BUILD constructing and the other three
add their magics to C
=head1 See
=head1 Status
=begin html
=end html
=head1 Authors
Ingy döt Net ingy@cpan.org
Damien 'dams' Krotkine dams@cpan.org
Matt S. Trout (mst) mst@shadowcat.co.uk
Christian Walde walde.christian@googlemail.com
Alessandro Ranellucci (aar/alexrj) aar@cpan.org
Carlos Lima (priodev) carlos@cpan.org
=head1 Copyright and License
Copyright (c) 2011-2016. Ingy döt Net.
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
See http://www.perl.com/perl/misc/Artistic.html
=cut
