use Syntax::Keyword::Junction, not Perl6::Junction
[gitmo/Moose-Autobox.git] / lib / Moose / Autobox / Array.pm
index ab28fbf..4e7abd7 100644 (file)
@@ -1,9 +1,13 @@
 package Moose::Autobox::Array;
 use Moose::Role 'with';
-use Perl6::Junction;
 use Moose::Autobox;
 
-our $VERSION = '0.10';
+use Syntax::Keyword::Junction::All ();
+use Syntax::Keyword::Junction::Any ();
+use Syntax::Keyword::Junction::None ();
+use Syntax::Keyword::Junction::One ();
+
+our $VERSION = '0.12';
 
 with 'Moose::Autobox::Ref',
      'Moose::Autobox::List',
@@ -85,6 +89,14 @@ sub sort {
     [ CORE::sort { $sub->($a, $b) } @$array ]; 
 }    
 
+sub first {
+    $_[0]->[0];
+}
+
+sub last {
+    $_[0]->[$#{$_[0]}];
+}
+
 ## ::Indexed implementation
 
 sub at {
@@ -134,7 +146,7 @@ sub each_value {
     $sub->($_) for @$array;
 }
 
-sub each_n {
+sub each_n_values {
     my ($array, $n, $sub) = @_;
     my $it = List::MoreUtils::natatime($n, @$array);
 
@@ -173,22 +185,22 @@ sub flatten_deep {
 
 sub all {
     my ($array) = @_;     
-    return Perl6::Junction::all(@$array);
+    return Syntax::Keyword::Junction::All->new(@$array);
 }
 
 sub any {
     my ($array) = @_;     
-    return Perl6::Junction::any(@$array);
+    return Syntax::Keyword::Junction::Any->new(@$array);
 }
 
 sub none {
     my ($array) = @_;     
-    return Perl6::Junction::none(@$array);
+    return Syntax::Keyword::Junction::None->new(@$array);
 }
 
 sub one {
     my ($array) = @_; 
-    return Perl6::Junction::one(@$array);
+    return Syntax::Keyword::Junction::One->new(@$array);
 }
 
 ## Print
@@ -196,6 +208,8 @@ sub one {
 sub print { CORE::print @{$_[0]} }
 sub say   { CORE::print @{$_[0]}, "\n" }
 
+no Moose::Role;
+
 1;
 
 __END__
@@ -246,7 +260,9 @@ This is a role to describe operations on the Array type.
 
 =item B<flatten_deep ($depth)>
 
-=item B<each_n ($n, $callback)>
+=item B<first>
+
+=item B<last>
 
 =back
 
@@ -272,6 +288,8 @@ This is a role to describe operations on the Array type.
 
 =item B<each_value>
 
+=item B<each_n_values ($n, $callback)>
+
 =back
 
 =head2 List implementation