/usr/share/perl5/MooseX/Has/Sugar.pm is in libmoosex-has-sugar-perl 1.000004-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | use 5.006; # pragmas, qr
use warnings;
use strict;
package MooseX::Has::Sugar;
our $VERSION = '1.000004';
# ABSTRACT: Sugar Syntax for moose 'has' fields
our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
use Carp ();
use Sub::Exporter::Progressive (
-setup => {
exports => [ 'ro', 'rw', 'required', 'lazy', 'lazy_build', 'coerce', 'weak_ref', 'auto_deref', 'bare', ],
groups => {
isattrs => [ 'ro', 'rw', 'bare', ],
attrs => [ 'required', 'lazy', 'lazy_build', 'coerce', 'weak_ref', 'auto_deref', ],
default => [ 'ro', 'rw', 'bare', 'required', 'lazy', 'lazy_build', 'coerce', 'weak_ref', 'auto_deref', ],
},
},
);
sub bare() {
return ( 'is', 'bare' );
}
sub ro() {
return ( 'is', 'ro' );
}
sub rw() {
return ( 'is', 'rw' );
}
sub required() {
return ( 'required', 1 );
}
sub lazy() {
return ( 'lazy', 1 );
}
sub lazy_build() {
return ( 'lazy_build', 1 );
}
sub weak_ref() {
return ( 'weak_ref', 1 );
}
sub coerce() {
return ( 'coerce', 1 );
}
sub auto_deref() {
return ( 'auto_deref', 1 );
}
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
MooseX::Has::Sugar - Sugar Syntax for moose 'has' fields
=head1 VERSION
version 1.000004
=head1 SYNOPSIS
L<Moose|Moose> C<has> syntax is generally fine, but sometimes one gets bothered with
the constant typing of string quotes for things. L<The MooseX::Types module|MooseX::Types> exists and in
many ways reduces the need for constant string creation.
=head2 Primary Benefits at a Glance
=head3 Reduced Typing in C<has> declarations.
The constant need to type C<=E<gt>> and C<''> is fine for one-off cases, but
the instant you have more than about 4 attributes it starts to get annoying.
=head3 More compact declarations.
Reduces much of the redundant typing in most cases, which makes your life easier,
and makes it take up less visual space, which makes it faster to read.
=head3 No String Worries
Strings are often problematic, due to white-space etc. Noted that if you do
happen to mess them up, Moose should at I<least> warn you that you've done
something daft. Using this alleviates that worry.
=head2 Before this Module.
=head3 Classical Moose
has foo => (
isa => 'Str',
is => 'ro',
required => 1,
);
has bar => (
isa => 'Str',
is => 'rw'
lazy_build => 1,
);
=head3 Lazy Evil way to do it:
B<PLEASE DO NOT DO THIS>
has qw( foo isa Str is ro required 1 );
has qw( bar isa Str is rw lazy_build 1 );
=head2 With this module
( and with MooseX::Types )
use MooseX::Types::Moose qw( Str );
use MooseX::Has::Sugar;
has foo => (
isa => Str,
ro,
required,
);
has bar => (
isa => Str,
rw,
lazy_build,
);
Or even
use MooseX::Types::Moose qw( Str );
use MooseX::Has::Sugar;
has foo => ( isa => Str, ro, required, );
has bar => ( isa => Str, rw, lazy_build, );
=head2 Alternative Forms
=head3 Basic C<is> Expansion Only
( using L<::Sugar::Minimal|MooseX::Has::Sugar::Minimal> instead )
use MooseX::Types::Moose qw( Str );
use MooseX::Has::Sugar::Minimal;
has foo => (
isa => Str,
is => ro,
required => 1,
);
has bar => (
isa => Str,
is => rw,
lazy_build => 1,
);
=head3 Attribute Expansions with Basic Expansions
( Combining parts of this and L<::Sugar::Minimal|MooseX::Has::Sugar::Minimal> )
use MooseX::Types::Moose qw( Str );
use MooseX::Has::Sugar::Minimal;
use MooseX::Has::Sugar qw( :attrs );
has foo => (
isa => Str,
is => ro,
required,
);
has bar => (
isa => Str,
is => rw,
lazy_build,
);
=head1 EXPORT GROUPS
=head2 C<:default>
Since 0.0300, this exports all our syntax, the same as C<:attrs> C<:isattrs>.
Primarily because I found you generally want all the sugar, not just part of it.
This also gets rid of that nasty exclusion logic.
=head2 C<:isattrs>
This exports C<ro>, C<rw> and C<bare> as lists, so they behave as stand-alone attributes like
L</lazy> does.
has foo => (
required,
isa => 'Str',
ro,
);
B<NOTE: This option is incompatible with L<::Sugar::Minimal|MooseX::Has::Sugar::Minimal>> : L</CONFLICTS>
=head2 C<:attrs>
This exports L</lazy> , L</lazy_build> and L</required>, L</coerce>, L</weak_ref>
and L</auto_deref> as subs that assume positive.
has foo => (
required,
isa => 'Str',
);
B<NOTE: This option is incompatible with L<MooseX::Types|MooseX::Types> and L<Moose's Type Constraints Module|Moose::Util::TypeConstraints>> : L</CONFLICTS>
=head2 C<:is>
B<DEPRECATED>. See L<::Sugar::Minimal|MooseX::Has::Sugar::Minimal> for the same functionality
=head2 C<:allattrs>
B<DEPRECATED>, just use L</:default> or do
use MooseX::Has::Sugar;
=head1 EXPORTED FUNCTIONS
=head2 C<bare>
returns C<('is','bare')>
=head2 C<ro>
returns C<('is','ro')>
=head2 C<rw>
returns C<('is','rw')>
=head2 C<required>
returns C<('required',1)>
=head2 C<lazy>
returns C<('lazy',1)>
=head2 C<lazy_build>
returns C<('lazy_build',1)>
=head2 C<weak_ref>
returns C<('weak_ref',1)>
=head2 C<coerce>
returns C<('coerce',1)>
B<WARNING:> Conflict with L<MooseX::Types|MooseX::Types> and L<Moose::Util::TypeConstraints|Moose::Util::TypeConstraints>, see L</CONFLICTS>.
=head2 C<auto_deref>
returns C<('auto_deref',1)>
=head1 CONFLICTS
=head2 MooseX::Has::Sugar::Minimal
=head2 MooseX::Has::Sugar::Saccharin
This module is not intended to be used in conjunction with
L<::Sugar::Minimal|MooseX::Has::Sugar::Minimal> or L<::Sugar::Saccharin|MooseX::Has::Sugar::Saccharin>
We export many of the same symbols and its just not very sensible.
=head2 MooseX::Types
=head2 Moose::Util::TypeConstraints
due to exporting the L</coerce> symbol, using us in the same scope as a call to
use MooseX::Types ....
or
use Moose::Util::TypeConstraints
will result in a symbol collision.
We recommend using and creating proper type libraries instead, ( which will absolve you entirely of the need to use MooseX::Types and MooseX::Has::Sugar(::*)? in the same scope )
=head1 AUTHOR
Kent Fredric <kentnl at cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2014 by Kent Fredric.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|