bump version to 1.18
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Bool / not.pm
CommitLineData
664e417b 1package Moose::Meta::Method::Accessor::Native::Bool::not;
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::Reader' =>
13 { -excludes => ['_maximum_arguments'] };
664e417b 14
664e417b 15sub _maximum_arguments { 0 }
16
17sub _return_value {
18 my ( $self, $slot_access ) = @_;
19
20 return "! $slot_access";
21}
22
231;