Mouse(3pm) | User Contributed Perl Documentation | Mouse(3pm) |
Mouse - Moose minus the antlers
This document describes Mouse version v2.5.10
package Point; use Mouse; # automatically turns on strict and warnings has 'x' => (is => 'rw', isa => 'Int'); has 'y' => (is => 'rw', isa => 'Int'); sub clear { my($self) = @_; $self->x(0); $self->y(0); } __PACKAGE__->meta->make_immutable(); package Point3D; use Mouse; extends 'Point'; has 'z' => (is => 'rw', isa => 'Int'); after 'clear' => sub { my($self) = @_; $self->z(0); }; __PACKAGE__->meta->make_immutable();
Moose is a postmodern object system for Perl5. Moose is wonderful.
Unfortunately, Moose has a compile-time penalty. Though significant progress has been made over the years, the compile time penalty is a non-starter for some very specific applications. If you are writing a command-line application or CGI script where startup time is essential, you may not be able to use Moose (we recommend that you instead use persistent Perl executing environments like "FastCGI" for the latter, if possible).
Mouse is a Moose compatible object system, which aims to alleviate this penalty by providing a subset of Moose's functionality.
We're also going as light on dependencies as possible. Mouse currently has no dependencies except for building/testing modules. Mouse also works without XS, although it has an XS backend to make it much faster.
Compatibility with Moose has been the utmost concern. The sugary interface is highly compatible with Moose. Even the error messages are taken from Moose. The Mouse code just runs its test suite 4x faster.
The idea is that, if you need the extra power, you should be able to run "s/Mouse/Moose/g" on your codebase and have nothing break. To that end, we have written Any::Moose which will act as Mouse unless Moose is loaded, in which case it will act as Moose. Since Mouse is a little sloppier than Moose, if you run into weird errors, it would be worth running:
ANY_MOOSE=Moose perl your-script.pl
to see if the bug is caused by Mouse. Moose's diagnostics and validation are also better.
See also Mouse::Spec for compatibility and incompatibility with Moose.
Please don't copy MooseX code to MouseX. If you need extensions, you really should upgrade to Moose. We don't need two parallel sets of extensions!
If you really must write a Mouse extension, please contact the Moose mailing list or #moose on IRC beforehand.
Returns this class' metaclass instance.
Sets this class' superclasses.
Installs a "before" method modifier. See "before" in Moose.
Installs an "after" method modifier. See "after" in Moose.
Installs an "around" method modifier. See "around" in Moose.
Adds an attribute (or if passed an arrayref of names, multiple attributes) to this class. Options:
If you need more control over how your accessors are named, you can use the "reader", "writer" and "accessor" options, however if you use those, you won't need the is option.
Any Item Bool Undef Defined Value Num Int Str ClassName Ref ScalarRef ArrayRef HashRef CodeRef RegexpRef GlobRef FileHandle Object
For more documentation on type constraints, see Mouse::Util::TypeConstraints.
Use of this feature requires Scalar::Util!
has $attr => ( # ... lazy => 1 builder => "_build_$attr", clearer => "clear_$attr", predicate => "has_$attr", );
"confess" in Carp for your convenience.
"blessed" in Scalar::Util for your convenience.
Importing Mouse will default your class' superclass list to Mouse::Object. You may use "extends" to replace the superclass list.
Please unimport Mouse ("no Mouse") so that if someone calls one of the keywords (such as "extends") it will break loudly instead breaking subtly.
Here is the repo: <https://github.com/gfx/p5-Mouse>.
You can build, test, and release it with Minilla.
cpanm Minilla minil build minil test minil release
Note that Build.PL and README.md are generated by Minilla, so you should not edit them. Edit minil.toml and lib/Mouse.pm instead.
Mouse::Role
Mouse::Spec
Moose
Moose::Manual
Moose::Cookbook
Class::MOP
Moo
Shawn M Moore <sartak at gmail.com>
Yuval Kogman <nothingmuch at woobling.org>
tokuhirom
Yappo
wu-lee
Goro Fuji (gfx) <gfuji@cpan.org>
with plenty of code borrowed from Class::MOP and Moose
All complex software has bugs lurking in it, and this module is no exception. Please report any bugs to <https://github.com/gfx/p5-Mouse/issues>.
Copyright (c) 2008-2010 Infinity Interactive, Inc.
http://www.iinteractive.com/
This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
2022-10-20 | perl v5.36.0 |