The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

NAME
MooseX::ShortHas - shortcuts for common Moose has attribute
configurations
VERSION
version 1.222491
SYNOPSIS
Instead of:
use Moose;
has hro => is => ro => required => 1;
has hlazy => is => lazy => builder => sub { 2 };
has hrwp => is => rwp => required => 1;
has hrw => is => rw => required => 1;
You can now write:
use Moose;
use MooseX::ShortHas;
ro "hro";
lazy hlazy => sub { 2 };
rwp "hrwp";
rw "hrw";
And options can be added or overriden by appending them:
ro hro_opt => required => 0;
DESCRIPTION
Moose's has asks developers to repeat themselves a lot to set up
attributes, and since its inceptions the most common configurations of
attributes have crystallized through long usage.
This module provides sugar shortcuts that wrap around has under the
appropriate names to reduce the effort of setting up an attribute to
naming it with a shortcut.
EXPORTS
ro, rwp, rw
These three work the same, they convert a call like this:
ro $name => @extra_args;
To this corresponding has call:
has $name => is => ro => required => 1 => @extra_args;
The appending of extra args makes it easy to override the required if
necessary.
lazy
This one is slightly different than the others, as lazy arguments don't
require a constructor value, but almost always want a builder of some
kind:
lazy $name => @extra_args;
Corresponds to:
has $name => is => lazy => builder => @extra_args;
The first extra argument is thus expected to be any of the values
appropriate for the builder option.
SEE ALSO
* Muuse - automatically wraps this module into Moose
* Muuse::Role - automatically wraps this module into Moose::Role
* MooX::ShortHas, Mu - the Moo-related predecessors of this module
* MooseX::MungeHas - a different module for creating your own has on
all of Moo/Moose/Mouse
SUPPORT
Bugs / Feature Requests
Please report any bugs or feature requests through the issue tracker at
notified automatically of any progress on your issue.
Source Code
This is open source software. The code repository is available for
public review and contribution under the terms of the license.
AUTHOR
Christian Walde <walde.christian@gmail.com>
CONTRIBUTORS
* Christian Walde <walde@united-domains.de>
* Graham Knop <haarg@haarg.org>
* Zakariyya Mughal <zaki.mughal@gmail.com>
* mst - Matt S. Trout (cpan:MSTROUT) <mst@shadowcat.co.uk>
COPYRIGHT AND LICENSE
Christian Walde has dedicated the work to the Commons by waiving all of
his or her rights to the work worldwide under copyright law and all
related or neighboring legal rights he or she had in the work, to the
extent allowable by law.
Works under CC0 do not require attribution. When citing the work, you
should not imply endorsement by the author.