All native array methods are being inlined.
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / clear.pm
1 package Moose::Meta::Method::Accessor::Native::Array::clear;
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 'Moose::Meta::Method::Accessor::Native::Array::Writer';
11
12 sub _maximum_arguments { 0 }
13
14 sub _adds_members { 0 }
15
16 sub _potential_value { return '()' }
17
18 1;