[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
xampp182
/
perl
/
vendor
/
lib
/
Moose
/
Meta
/
Method
/
Accessor
/
Native
/
Counter
/
[
Home
]
File: Writer.pm
package Moose::Meta::Method::Accessor::Native::Counter::Writer; BEGIN { $Moose::Meta::Method::Accessor::Native::Counter::Writer::AUTHORITY = 'cpan:STEVAN'; } { $Moose::Meta::Method::Accessor::Native::Counter::Writer::VERSION = '2.0604'; } 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;