more cleanups
[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
245478d5 6our $VERSION = '1.19';
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
53a4677c 16 _optimized_set_new_value
7f5ec80d 17 _return_value
8b9641b8 18 )
19 ]
20};
a7821be5 21
22sub _maximum_arguments { 0 }
23
24sub _adds_members { 0 }
25
1e2c801e 26sub _potential_value { '[]' }
a7821be5 27
53a4677c 28sub _optimized_set_new_value {
29 my $self = shift;
30 my ($inv, $new, $slot_access) = @_;
e32b7489 31
53a4677c 32 return $slot_access . ' = []';
e32b7489 33}
34
1e2c801e 35sub _return_value { '' }
7f5ec80d 36
8b9641b8 37no Moose::Role;
38
a7821be5 391;