Move even more code up to parent
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Bool / toggle.pm
CommitLineData
664e417b 1package Moose::Meta::Method::Accessor::Native::Bool::toggle;
2
3use strict;
4use warnings;
5
6our $VERSION = '1.13';
7$VERSION = eval $VERSION;
8our $AUTHORITY = 'cpan:STEVAN';
9
10use base 'Moose::Meta::Method::Accessor::Native::Bool::Writer';
11
12sub _minimum_arguments { 0 }
13sub _maximum_arguments { 0 }
14
15sub _inline_optimized_set_new_value {
16 my ( $self, $inv, $new, $slot_access ) = @_;
17
18 return "$slot_access = $slot_access ? 0 : 1;";
19}
20
211;