Beginning of dzilization
[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
664e417b 6our $AUTHORITY = 'cpan:STEVAN';
7
8b9641b8 8use Moose::Role;
9
10with 'Moose::Meta::Method::Accessor::Native::Reader' =>
11 { -excludes => ['_maximum_arguments'] };
664e417b 12
664e417b 13sub _maximum_arguments { 0 }
14
15sub _return_value {
53a4677c 16 my $self = shift;
17 my ($slot_access) = @_;
664e417b 18
53a4677c 19 return '!' . $slot_access;
664e417b 20}
21
221;