$b = @array1 ~~ @array2;
The smartmatch operator will recursively compare two arrays (lists actually) and return true if it finds the same element values in both. See the documentation for specifics.
Unfortunately, smartmatch remains experimental because of its byzantine complexity. For this application it's fine.
Unfortunately, smartmatch remains experimental because of its byzantine complexity. For this application it's fine.
sub lcomp {
my ($a, $b) = @_;
return 0 if ( @$a != @$b ); # lengths different
my $matched = 1;
for (my $i=0; $i < @$a; $i++) {
return 0 unless $a->[$i] == $b->[$i];
}
return 1;
}
This does a numeric comparison of two flat lists, with minimal error checking. Perl's dynamic typing means lists can contain arbitrary mixing and nesting of strings and numbers or lists or hashes; For that you should use a CPAN module like Data::Compare.