Move some code to Native/Writer since it is the same for all native types
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / Reader.pm
CommitLineData
f7fd22b6 1package Moose::Meta::Method::Accessor::Native::Array::Reader;
2
3use strict;
4use warnings;
5
6our $VERSION = '1.13';
7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
5df54980 10use base qw(
11 Moose::Meta::Method::Accessor::Native::Array
12 Moose::Meta::Method::Accessor::Native::Reader
13);
a7821be5 14
f7fd22b6 151;