Bump version to 1.9900 for new version numbering scheme
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Counter / dec.pm
CommitLineData
04e05413 1package Moose::Meta::Method::Accessor::Native::Counter::dec;
2
3use strict;
4use warnings;
5
bb8ef151 6our $VERSION = '1.9900';
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
a486d5ad 17 _inline_optimized_set_new_value
8b9641b8 18 )
19 ]
20};
04e05413 21
1e2c801e 22sub _minimum_arguments { 0 }
23sub _maximum_arguments { 1 }
04e05413 24
25sub _potential_value {
53a4677c 26 my $self = shift;
27 my ($slot_access) = @_;
04e05413 28
1e2c801e 29 return $slot_access . ' - (defined $_[0] ? $_[0] : 1)';
04e05413 30}
31
a486d5ad 32sub _inline_optimized_set_new_value {
53a4677c 33 my $self = shift;
34 my ($inv, $new, $slot_access) = @_;
04e05413 35
a486d5ad 36 return $slot_access . ' -= defined $_[0] ? $_[0] : 1;';
04e05413 37}
38
8b9641b8 39no Moose::Role;
40
04e05413 411;