bump version to 1.18
[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
aff6aafc 6our $VERSION = '1.18';
664e417b 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 _maximum_arguments
16 _inline_optimized_set_new_value
17 )
18 ]
19};
664e417b 20
664e417b 21sub _maximum_arguments { 0 }
22
a6ae7438 23sub _potential_value {
24 my ( $self, $slot_access ) = @_;
25
85fcb11f 26 return "$slot_access ? 0 : 1";
a6ae7438 27}
28
664e417b 29sub _inline_optimized_set_new_value {
30 my ( $self, $inv, $new, $slot_access ) = @_;
31
584540d9 32 return "$slot_access = $slot_access ? 0 : 1";
664e417b 33}
34
8b9641b8 35no Moose::Role;
36
664e417b 371;