package Moose::Autobox::String;
use Moose::Role;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
with 'Moose::Autobox::Value';
return CORE::index($_[0], $_[1]) if scalar @_ == 2;
return CORE::index($_[0], $_[1], $_[2]);
}
+sub rindex {
+ return CORE::rindex($_[0], $_[1]) if scalar @_ == 2;
+ return CORE::rindex($_[0], $_[1], $_[2]);
+}
-# FIXME: this is not working
-#sub rindex { CORE::rindex $_[0], $_[1], (defined $_[2] ? $_[2] : ()) }
-
1;
__END__
=item B<reverse>
+=item B<rindex>
+
=item B<uc>
=item B<ucfirst>
Stevan Little E<lt>stevan@iinteractive.comE<gt>
+Anders Nor Berle E<lt>debolaz@gmail.comE<gt>
+
=head1 COPYRIGHT AND LICENSE
Copyright 2006 by Infinity Interactive, Inc.
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself.
-=cut
\ No newline at end of file
+=cut
+
use strict;
use warnings;
-use Test::More tests => 16;
+use Test::More tests => 18;
use Test::Exception;
BEGIN {
is('Hello World, Hello'->index('Hello', 6), 13, '... got the correct index');
-#is('Hello World, Hello'->rindex('World'), 13, '... got the correct right index');
-#diag CORE::rindex('Hello World, Hello', 'Hello');
+is('Hello World, Hello'->rindex('Hello'), 13, '... got the correct right index');
+
+is('Hello World, Hello'->rindex('Hello', 6), 0, '... got the correct right index');
+