Bump version to 1.9900 for new version numbering scheme
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Hash / keys.pm
CommitLineData
44babf1f 1package Moose::Meta::Method::Accessor::Native::Hash::keys;
2
3use strict;
4use warnings;
5
6use Scalar::Util qw( looks_like_number );
7
bb8ef151 8our $VERSION = '1.9900';
44babf1f 9$VERSION = eval $VERSION;
10our $AUTHORITY = 'cpan:STEVAN';
11
8b9641b8 12use Moose::Role;
44babf1f 13
8b9641b8 14with 'Moose::Meta::Method::Accessor::Native::Reader' =>
15 { -excludes => ['_maximum_arguments'] };
44babf1f 16
17sub _maximum_arguments { 0 }
18
19sub _return_value {
53a4677c 20 my $self = shift;
21 my ($slot_access) = @_;
44babf1f 22
53a4677c 23 return 'keys %{ (' . $slot_access . ') }';
44babf1f 24}
25
8b9641b8 26no Moose::Role;
44babf1f 27
281;