Sha256: 9d10b0ae8e69eb2b119d0ea83badc48083522b1f791a81a2b4034e88c2d243cf
Contents?: true
Size: 502 Bytes
Versions: 33
Compression:
Stored size: 502 Bytes
Contents
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;
Version data entries
33 entries across 21 versions & 1 rubygems