From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more
1234567891011 use Test::More;use Data::LnArray::XS;my $array = Data::LnArray::XS->new(qw/one two one three four/);my $first = $array->lastIndexOf('one');is($first, 2);done_testing;
use
Test::More;
Data::LnArray::XS;
my
$array
= Data::LnArray::XS->new(
qw/one two one three four/
);
$first
=
->lastIndexOf(
'one'
is(
, 2);
done_testing;