clean up ::Destructor
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Counter / inc.pm
CommitLineData
04e05413 1package Moose::Meta::Method::Accessor::Native::Counter::inc;
2
3use strict;
4use warnings;
5
245478d5 6our $VERSION = '1.19';
04e05413 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
8b9641b8 10use Moose::Role;
11
12with 'Moose::Meta::Method::Accessor::Native::Writer' => {
13 -excludes => [
14 qw(
15 _minimum_arguments
16 _maximum_arguments
17 _inline_optimized_set_new_value
18 )
19 ]
20};
04e05413 21
22sub _minimum_arguments { 0 }
23sub _maximum_arguments { 1 }
24
25sub _potential_value {
26 my ( $self, $slot_access ) = @_;
27
584540d9 28 return "$slot_access + ( defined \$_[0] ? \$_[0] : 1 )";
04e05413 29}
30
31sub _inline_optimized_set_new_value {
32 my ( $self, $inv, $new, $slot_access ) = @_;
33
584540d9 34 return "$slot_access += defined \$_[0] ? \$_[0] : 1";
04e05413 35}
36
8b9641b8 37no Moose::Role;
38
04e05413 391;