1 package Moose::Meta::Method::Accessor::Native::Counter::Writer;
6 our $VERSION = '1.9900';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
12 with 'Moose::Meta::Method::Accessor::Native::Writer';
14 sub _constraint_must_be_checked {
17 my $attr = $self->associated_attribute;
19 return $attr->has_type_constraint
20 && ($attr->type_constraint->name =~ /^(?:Num|Int)$/
21 || ($attr->should_coerce && $attr->type_constraint->has_coercion)