Bump version to 1.9900 for new version numbering scheme
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / map.pm
CommitLineData
f7fd22b6 1package Moose::Meta::Method::Accessor::Native::Array::map;
2
3use strict;
4use warnings;
5
88e88a7b 6use Params::Util ();
7
bb8ef151 8our $VERSION = '1.9900';
f7fd22b6 9$VERSION = eval $VERSION;
10our $AUTHORITY = 'cpan:STEVAN';
11
8b9641b8 12use Moose::Role;
13
14with 'Moose::Meta::Method::Accessor::Native::Reader' => {
15 -excludes => [
16 qw(
17 _minimum_arguments
18 _maximum_arguments
19 _inline_check_arguments
20 )
21 ]
22};
f7fd22b6 23
a7821be5 24sub _minimum_arguments { 1 }
25
26sub _maximum_arguments { 1 }
f7fd22b6 27
910684ee 28sub _inline_check_arguments {
e3181911 29 my $self = shift;
30
53a4677c 31 return (
32 'if (!Params::Util::_CODELIKE($_[0])) {',
33 $self->_inline_throw_error(
34 '"The argument passed to map must be a code reference"',
35 ) . ';',
36 '}',
37 );
910684ee 38}
39
f7fd22b6 40sub _return_value {
53a4677c 41 my $self = shift;
42 my ($slot_access) = @_;
f7fd22b6 43
53a4677c 44 return 'map { $_[0]->() } @{ (' . $slot_access . ') }';
f7fd22b6 45}
46
8b9641b8 47no Moose::Role;
48
f7fd22b6 491;