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