make github the primary repository
[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
8b9641b8 6use Moose::Role;
7
00bbc132 8with 'Moose::Meta::Method::Accessor::Native::Reader';
664e417b 9
664e417b 10sub _maximum_arguments { 0 }
11
12sub _return_value {
53a4677c 13 my $self = shift;
14 my ($slot_access) = @_;
664e417b 15
53a4677c 16 return '!' . $slot_access;
664e417b 17}
18
191;