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