Beginning of dzilization
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Hash / elements.pm
1 package Moose::Meta::Method::Accessor::Native::Hash::elements;
2
3 use strict;
4 use warnings;
5
6 use Scalar::Util qw( looks_like_number );
7
8 our $AUTHORITY = 'cpan:STEVAN';
9
10 use Moose::Role;
11
12 with 'Moose::Meta::Method::Accessor::Native::Reader' =>
13     { -excludes => ['_maximum_arguments'] };
14
15 sub _maximum_arguments { 0 }
16
17 sub _return_value {
18     my $self = shift;
19     my ($slot_access) = @_;
20
21     return 'map { $_, ' . $slot_access . '->{$_} } '
22              . 'keys %{ (' . $slot_access . ') }';
23 }
24
25 no Moose::Role;
26
27 1;