Idiom #264 Automated passing of array bounds
Pass a two-dimensional integer array a to a procedure foo and print the size of the array in each dimension. Do not pass the bounds manually. Call the procedure with a two-dimensional array.
sub foo {
my ($a) = @_;
return scalar @{ $a }, scalar @{ $a->[0] };
}
my $a = [[1,2,3], [4,5,6]];
printf "%d %d\n", foo($a);
List reference $a is dereferenced into a list using @{ }. The 'scalar' operator forces scalar context, in which a list evaluates to its length.
The two lengths are returned as a list.
This code presumes that all elements of the inner list have the same length as the zeroeth element.
The two lengths are returned as a list.
This code presumes that all elements of the inner list have the same length as the zeroeth element.