Files
lms-plugins/CPAN/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm
mschuepbach d95734d3d0
All checks were successful
release / release-plugins (push) Successful in 28s
Add Moose package
2024-04-24 13:33:38 +02:00

25 lines
502 B
Perl

package Moose::Meta::Method::Accessor::Native::Counter::Writer;
our $VERSION = '2.2207';
use strict;
use warnings;
use Moose::Role;
with 'Moose::Meta::Method::Accessor::Native::Writer';
sub _constraint_must_be_checked {
my $self = shift;
my $attr = $self->associated_attribute;
return $attr->has_type_constraint
&& ($attr->type_constraint->name =~ /^(?:Num|Int)$/
|| ($attr->should_coerce && $attr->type_constraint->has_coercion)
);
}
no Moose::Role;
1;