more cleanups
[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
245478d5 6our $VERSION = '1.19';
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 {
53a4677c 18 my $self = shift;
19 my ($slot_access) = @_;
e7724627 20
53a4677c 21 return 'length ' . $slot_access;
e7724627 22}
23
8b9641b8 24no Moose::Role;
25
e7724627 261;