foo
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Array.pm
CommitLineData
5f654d8e 1package Moose::Autobox::Array;
2use Moose::Role 'with';
7fc99864 3use Perl6::Junction;
7dad2765 4use Moose::Autobox;
5f654d8e 5
7dad2765 6our $VERSION = '0.03';
5f654d8e 7
e6bb88b0 8with 'Moose::Autobox::Ref',
31d40d73 9 'Moose::Autobox::List',
10 'Moose::Autobox::Indexed';
6cf5bcf2 11
12## Array Interface
13
14sub pop {
15 my ($array) = @_;
16 CORE::pop @$array;
17}
18
19sub push {
20 my ($array, @rest) = @_;
21 CORE::push @$array, @rest;
22 $array;
23}
24
25sub unshift {
26 my ($array, @rest) = @_;
27 CORE::unshift @$array, @rest;
28 $array;
29}
5f654d8e 30
6cf5bcf2 31sub delete {
32 my ($array, $index) = @_;
33 CORE::delete $array->[$index];
34}
35
36sub shift {
37 my ($array) = @_;
38 CORE::shift @$array;
c11e6a74 39}
40
41sub slice {
42 my ($array, $indicies) = @_;
43 [ @{$array}[ @{$indicies} ] ];
44}
6cf5bcf2 45
46# NOTE:
47# sprintf args need to be reversed,
48# because the invocant is the array
49sub sprintf { CORE::sprintf $_[1], @{$_[0]} }
50
51## ::List interface implementation
52
53sub head { $_[0]->[0] }
54sub tail { [ @{$_[0]}[ 1 .. $#{$_[0]} ] ] }
e6bb88b0 55
5f654d8e 56sub length {
57 my ($array) = @_;
58 CORE::scalar @$array;
59}
60
61sub grep {
62 my ($array, $sub) = @_;
63 [ CORE::grep { $sub->($_) } @$array ];
64}
65
66sub map {
67 my ($array, $sub) = @_;
68 [ CORE::map { $sub->($_) } @$array ];
69}
70
71sub join {
feffe00c 72 my ($array, $sep) = @_;
73 $sep ||= '';
5f654d8e 74 CORE::join $sep, @$array;
75}
76
77sub reverse {
78 my ($array) = @_;
e6bb88b0 79 [ CORE::reverse @$array ];
5f654d8e 80}
81
82sub sort {
83 my ($array, $sub) = @_;
84 $sub ||= sub { $a cmp $b };
85 [ CORE::sort { $sub->($a, $b) } @$array ];
5dc78481 86}
87
260cc81f 88## ::Indexed implementation
5dc78481 89
260cc81f 90sub at {
91 my ($array, $index) = @_;
92 $array->[$index];
93}
5dc78481 94
260cc81f 95sub put {
96 my ($array, $index, $value) = @_;
97 $array->[$index] = $value;
98}
5dc78481 99
6cf5bcf2 100sub exists {
101 my ($array, $index) = @_;
102 CORE::exists $array->[$index];
103}
5dc78481 104
105sub keys {
106 my ($array) = @_;
107 [ 0 .. $#{$array} ];
108}
109
110sub values {
111 my ($array) = @_;
112 [ @$array ];
113}
114
115sub kv {
116 my ($array) = @_;
feffe00c 117 $array->keys->map(sub { [ $_, $array->[$_] ] });
5dc78481 118}
e6bb88b0 119
7fc99864 120## Junctions
121
122sub all {
123 my ($array) = @_;
124 return Perl6::Junction::All->all(@$array);
125}
126
127sub any {
128 my ($array) = @_;
129 return Perl6::Junction::Any->any(@$array);
130}
131
132sub none {
133 my ($array) = @_;
134 return Perl6::Junction::None->none(@$array);
135}
136
137sub one {
138 my ($array) = @_;
139 return Perl6::Junction::One->one(@$array);
140}
141
5f654d8e 1421;
31d40d73 143
144__END__
145
146=pod
147
148=head1 NAME
149
150Moose::Autobox::Array - the Array role
151
152=head1 SYNOPOSIS
153
154 use Moose::Autobox;
155 use autobox;
156
5272f13f 157 [ 1..5 ]->isa('ARRAY'); # true
158 [ a..z ]->does('Moose::Autobox::Array'); # true
159 [ 0..2 ]->does('Moose::Autobox::List'); # true
160
31d40d73 161 print "Squares: " . [ 1 .. 10 ]->map(sub { $_ * $_ })->join(', ');
5272f13f 162
163 print [ 1, 'number' ]->sprintf('%d is the loneliest %s');
f6e003cc 164
165 print ([ 1 .. 5 ]->any == 3) ? 'true' : 'false'; # prints 'true'
31d40d73 166
167=head1 DESCRIPTION
168
8937074a 169This is a role to describe operations on the Array type.
170
260cc81f 171=head1 METHODS
172
173=over 4
174
260cc81f 175=item B<pop>
176
5272f13f 177=item B<push ($value)>
260cc81f 178
179=item B<shift>
180
5272f13f 181=item B<unshift ($value)>
260cc81f 182
5272f13f 183=item B<delete ($index)>
260cc81f 184
5272f13f 185=item B<sprintf ($format_string)>
260cc81f 186
c11e6a74 187=item B<slice (@indices)>
188
260cc81f 189=back
190
5272f13f 191=head2 Indexed implementation
260cc81f 192
193=over 4
194
5272f13f 195=item B<at ($index)>
260cc81f 196
5272f13f 197=item B<put ($index, $value)>
260cc81f 198
5272f13f 199=item B<exists ($index)>
260cc81f 200
201=item B<keys>
202
260cc81f 203=item B<values>
204
5272f13f 205=item B<kv>
206
260cc81f 207=back
208
5272f13f 209=head2 List implementation
260cc81f 210
211=over 4
212
213=item B<head>
214
215=item B<tail>
216
5272f13f 217=item B<join (?$seperator)>
260cc81f 218
219=item B<length>
220
5272f13f 221=item B<map (\&block)>
260cc81f 222
5272f13f 223=item B<grep (\&block)>
260cc81f 224
225=item B<reverse>
226
5272f13f 227=item B<sort (?\&block)>
228
229=back
230
7fc99864 231=head2 Junctions
232
233=over 4
234
235=item B<all>
236
237=item B<any>
238
239=item B<none>
240
241=item B<one>
242
243=back
244
5272f13f 245=over 4
246
247=item B<meta>
260cc81f 248
249=back
250
31d40d73 251=head1 BUGS
252
253All complex software has bugs lurking in it, and this module is no
254exception. If you find a bug please either email me, or add the bug
255to cpan-RT.
256
257=head1 AUTHOR
258
259Stevan Little E<lt>stevan@iinteractive.comE<gt>
260
261=head1 COPYRIGHT AND LICENSE
262
263Copyright 2006 by Infinity Interactive, Inc.
264
265L<http://www.iinteractive.com>
266
267This library is free software; you can redistribute it and/or modify
268it under the same terms as Perl itself.
269
f6e003cc 270=cut