Rename _inline_copy_value so we don't accidentally reuse the version for non-native...
[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
10bd99ec 6our $VERSION = '1.14';
e7724627 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
9377e13a 10use base 'Moose::Meta::Method::Accessor::Native::Reader';
e7724627 11
12sub _minimum_arguments { 0 }
13sub _maximum_arguments { 0 }
14
15sub _return_value {
16 my ( $self, $slot_access ) = @_;
17
18 return "length $slot_access";
19}
20
211;