Commit | Line | Data |
---|---|---|
a7821be5 | 1 | package Moose::Meta::Method::Accessor::Native::Array::sort_in_place; |
2 | ||
3 | use strict; | |
4 | use warnings; | |
5 | ||
88e88a7b | 6 | use Params::Util (); |
7 | ||
bb8ef151 | 8 | our $VERSION = '1.9900'; |
a7821be5 | 9 | $VERSION = eval $VERSION; |
10 | our $AUTHORITY = 'cpan:STEVAN'; | |
11 | ||
8b9641b8 | 12 | use Moose::Role; |
13 | ||
14 | with 'Moose::Meta::Method::Accessor::Native::Array::Writer' => { | |
15 | -excludes => [ | |
16 | qw( | |
17 | _maximum_arguments | |
18 | _inline_check_arguments | |
7f5ec80d | 19 | _return_value |
8b9641b8 | 20 | ) |
21 | ] | |
22 | }; | |
a7821be5 | 23 | |
24 | sub _maximum_arguments { 1 } | |
25 | ||
26 | sub _inline_check_arguments { | |
e3181911 | 27 | my $self = shift; |
28 | ||
53a4677c | 29 | return ( |
30 | 'if (@_ && !Params::Util::_CODELIKE($_[0])) {', | |
31 | $self->_inline_throw_error( | |
32 | '"The argument passed to sort_in_place must be a code ' | |
33 | . 'reference"', | |
34 | ) . ';', | |
35 | '}', | |
36 | ); | |
a7821be5 | 37 | } |
38 | ||
39 | sub _adds_members { 0 } | |
40 | ||
41 | sub _potential_value { | |
53a4677c | 42 | my $self = shift; |
43 | my ($slot_access) = @_; | |
a7821be5 | 44 | |
53a4677c | 45 | return '[ $_[0] ' |
46 | . '? sort { $_[0]->($a, $b) } @{ (' . $slot_access . ') } ' | |
47 | . ': sort @{ (' . $slot_access . ') } ]'; | |
a7821be5 | 48 | } |
49 | ||
1e2c801e | 50 | sub _return_value { '' } |
7f5ec80d | 51 | |
8b9641b8 | 52 | no Moose::Role; |
53 | ||
a7821be5 | 54 | 1; |