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