Implemented inlning for all string methods.
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / String / Reader.pm
1 package Moose::Meta::Method::Accessor::Native::String::Reader;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.13';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base qw(
11     Moose::Meta::Method::Accessor::Native::String
12     Moose::Meta::Method::Accessor::Native::Reader
13 );
14
15 1;