Inline all Counter methods
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Counter / inc.pm
1 package Moose::Meta::Method::Accessor::Native::Counter::inc;
2
3 use strict;
4 use warnings;
5
6 our $VERSION = '1.13';
7 $VERSION = eval $VERSION;
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use base 'Moose::Meta::Method::Accessor::Native::Writer';
11
12 sub _minimum_arguments { 0 }
13 sub _maximum_arguments { 1 }
14
15 sub _potential_value {
16     my ( $self, $slot_access ) = @_;
17
18     return "$slot_access + ( defined \$_[0] ? \$_[0] : 1 );";
19 }
20
21 sub _inline_optimized_set_new_value {
22     my ( $self, $inv, $new, $slot_access ) = @_;
23
24     return "$slot_access += defined \$_[0] ? \$_[0] : 1;";
25 }
26
27 1;