bump version to 1.18
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / clear.pm
CommitLineData
a7821be5 1package Moose::Meta::Method::Accessor::Native::Array::clear;
2
3use strict;
4use warnings;
5
aff6aafc 6our $VERSION = '1.18';
a7821be5 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => {
13 -excludes => [
14 qw(
15 _maximum_arguments
16 _inline_optimized_set_new_value
7f5ec80d 17 _return_value
8b9641b8 18 )
19 ]
20};
a7821be5 21
22sub _maximum_arguments { 0 }
23
24sub _adds_members { 0 }
25
4780fef9 26sub _potential_value { return '[]' }
a7821be5 27
e32b7489 28sub _inline_optimized_set_new_value {
29 my ( $self, $inv, $new, $slot_access ) = @_;
30
584540d9 31 return "$slot_access = []";
e32b7489 32}
33
7f5ec80d 34sub _return_value { return q{} }
35
8b9641b8 36no Moose::Role;
37
a7821be5 381;