All of the non-mutating array helpers are now inlined.
[gitmo/Moose.git] / lib / Moose / Meta / Method / Accessor / Native / Array / shuffle.pm
CommitLineData
910684ee 1package Moose::Meta::Method::Accessor::Native::Array::shuffle;
2
3use strict;
4use warnings;
5
6use List::Util ();
7
8our $VERSION = '1.13';
9$VERSION = eval $VERSION;
10our $AUTHORITY = 'cpan:STEVAN';
11
12use base 'Moose::Meta::Method::Accessor::Native::Array::Reader';
13
14sub _return_value {
15 my $self = shift;
16 my $slot_access = shift;
17
18 return "List::Util::shuffle \@{ $slot_access }";
19}
20
211;