Remove extra newline
[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
10bd99ec 6our $VERSION = '1.14';
04e05413 7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
10use base 'Moose::Meta::Method::Accessor::Native::Writer';
11
12sub _minimum_arguments {0}
13sub _maximum_arguments {1}
14
15sub _potential_value {
16 my ( $self, $slot_access ) = @_;
17
584540d9 18 return "$slot_access - ( defined \$_[0] ? \$_[0] : 1 )";
04e05413 19}
20
21sub _inline_optimized_set_new_value {
22 my ( $self, $inv, $new, $slot_access ) = @_;
23
584540d9 24 return "$slot_access -= defined \$_[0] ? \$_[0] : 1";
04e05413 25}
26
271;