X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FMoose%2FAutobox%2FArray.pm;h=ab28fbf7876ccce63704e2eb4f132964bbe61d0f;hb=0e4809110e25a83f84e51bd913ae9e233fb3ce63;hp=1b31e90a841850cf6d2ccbbe49467784f47b2670;hpb=e6bb88b0e1fff9794352dde571e623ae0f4e3a95;p=gitmo%2FMoose-Autobox.git diff --git a/lib/Moose/Autobox/Array.pm b/lib/Moose/Autobox/Array.pm index 1b31e90..ab28fbf 100644 --- a/lib/Moose/Autobox/Array.pm +++ b/lib/Moose/Autobox/Array.pm @@ -1,12 +1,57 @@ package Moose::Autobox::Array; use Moose::Role 'with'; +use Perl6::Junction; +use Moose::Autobox; -our $VERSION = '0.01'; +our $VERSION = '0.10'; with 'Moose::Autobox::Ref', - 'Moose::Autobox::List'; + 'Moose::Autobox::List', + 'Moose::Autobox::Indexed'; + +## Array Interface + +sub pop { + my ($array) = @_; + CORE::pop @$array; +} + +sub push { + my ($array, @rest) = @_; + CORE::push @$array, @rest; + $array; +} + +sub unshift { + my ($array, @rest) = @_; + CORE::unshift @$array, @rest; + $array; +} -## List interface +sub delete { + my ($array, $index) = @_; + CORE::delete $array->[$index]; +} + +sub shift { + my ($array) = @_; + CORE::shift @$array; +} + +sub slice { + my ($array, $indicies) = @_; + [ @{$array}[ @{$indicies} ] ]; +} + +# NOTE: +# sprintf args need to be reversed, +# because the invocant is the array +sub sprintf { CORE::sprintf $_[1], @{$_[0]} } + +## ::List interface implementation + +sub head { $_[0]->[0] } +sub tail { [ @{$_[0]}[ 1 .. $#{$_[0]} ] ] } sub length { my ($array) = @_; @@ -24,7 +69,8 @@ sub map { } sub join { - my ($array, $sep) = @_; + my ($array, $sep) = @_; + $sep ||= ''; CORE::join $sep, @$array; } @@ -37,43 +83,25 @@ sub sort { my ($array, $sub) = @_; $sub ||= sub { $a cmp $b }; [ CORE::sort { $sub->($a, $b) } @$array ]; -} +} -## Array Interface +## ::Indexed implementation -sub pop { - my ($array) = @_; - CORE::pop @$array; -} +sub at { + my ($array, $index) = @_; + $array->[$index]; +} -sub push { - my ($array, @rest) = @_; - CORE::push @$array, @rest; - $array; +sub put { + my ($array, $index, $value) = @_; + $array->[$index] = $value; } -sub unshift { - my ($array, @rest) = @_; - CORE::unshift @$array, @rest; - $array; -} sub exists { my ($array, $index) = @_; CORE::exists $array->[$index]; } -sub delete { - my ($array, $index) = @_; - CORE::delete $array->[$index]; -} - -sub shift { - my ($array) = @_; - CORE::shift @$array; -} - -## - sub keys { my ($array) = @_; [ 0 .. $#{$array} ]; @@ -86,7 +114,247 @@ sub values { sub kv { my ($array) = @_; - [ CORE::map { [ $_, $array->[$_] ] } $array->keys ]; + $array->keys->map(sub { [ $_, $array->[$_] ] }); +} + +sub each { + my ($array, $sub) = @_; + for my $i (0 .. $#$array) { + $sub->($i, $array->[ $i ]); + } +} + +sub each_key { + my ($array, $sub) = @_; + $sub->($_) for (0 .. $#$array); +} + +sub each_value { + my ($array, $sub) = @_; + $sub->($_) for @$array; +} + +sub each_n { + my ($array, $n, $sub) = @_; + my $it = List::MoreUtils::natatime($n, @$array); + + while (my @vals = $it->()) { + $sub->(@vals); + } + + return; +} + +# end indexed + +sub flatten { + @{$_[0]} } +sub _flatten_deep { + my @array = @_; + my $depth = CORE::pop @array; + --$depth if (defined($depth)); + + CORE::map { + (ref eq 'ARRAY') + ? (defined($depth) && $depth == -1) ? $_ : _flatten_deep( @$_, $depth ) + : $_ + } @array; + +} + +sub flatten_deep { + my ($array, $depth) = @_; + [ _flatten_deep(@$array, $depth) ]; +} + +## Junctions + +sub all { + my ($array) = @_; + return Perl6::Junction::all(@$array); +} + +sub any { + my ($array) = @_; + return Perl6::Junction::any(@$array); +} + +sub none { + my ($array) = @_; + return Perl6::Junction::none(@$array); +} + +sub one { + my ($array) = @_; + return Perl6::Junction::one(@$array); +} + +## Print + +sub print { CORE::print @{$_[0]} } +sub say { CORE::print @{$_[0]}, "\n" } + 1; + +__END__ + +=pod + +=head1 NAME + +Moose::Autobox::Array - the Array role + +=head1 SYNOPOSIS + + use Moose::Autobox; + + [ 1..5 ]->isa('ARRAY'); # true + [ a..z ]->does('Moose::Autobox::Array'); # true + [ 0..2 ]->does('Moose::Autobox::List'); # true + + print "Squares: " . [ 1 .. 10 ]->map(sub { $_ * $_ })->join(', '); + + print [ 1, 'number' ]->sprintf('%d is the loneliest %s'); + + print ([ 1 .. 5 ]->any == 3) ? 'true' : 'false'; # prints 'true' + +=head1 DESCRIPTION + +This is a role to describe operations on the Array type. + +=head1 METHODS + +=over 4 + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=back + +=head2 Indexed implementation + +=over 4 + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +=back + +=head2 List implementation + +=over 4 + +=item B + +=item B + +=item B + +=item B + +=item B + +=item B + +Note that, in both the above, $_ is in scope within the code block, as well as +being passed as $_[0]. As per CORE::map and CORE::grep, $_ is an alias to +the list value, so can be used to to modify the list, viz: + + use Moose::Autobox; + + my $foo = [1, 2, 3]; + $foo->map( sub {$_++} ); + print $foo->dump; + +yields + + $VAR1 = [ + 2, + 3, + 4 + ]; + +=item B + +=item B + +=back + +=head2 Junctions + +=over 4 + +=item B + +=item B + +=item B + +=item B + +=back + +=over 4 + +=item B + +=item B + +=item B + +=back + +=head1 BUGS + +All complex software has bugs lurking in it, and this module is no +exception. If you find a bug please either email me, or add the bug +to cpan-RT. + +=head1 AUTHOR + +Stevan Little Estevan@iinteractive.comE + +=head1 COPYRIGHT AND LICENSE + +Copyright 2006-2008 by Infinity Interactive, Inc. + +L + +This library is free software; you can redistribute it and/or modify +it under the same terms as Perl itself. + +=cut