bump version to 1.18
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / String / length.pm
CommitLineData
e7724627 1package Moose::Meta::Method::Accessor::Native::String::length;
2
3use strict;
4use warnings;
5
aff6aafc 6our $VERSION = '1.18';
e7724627 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Reader' =>
13 { -excludes => ['_maximum_arguments'] };
e7724627 14
e7724627 15sub _maximum_arguments { 0 }
16
17sub _return_value {
18 my ( $self, $slot_access ) = @_;
19
20 return "length $slot_access";
21}
22
8b9641b8 23no Moose::Role;
24
e7724627 251;