RE: Size of Array

2002-02-18 Thread John Edwards
The terminology you are looking for is multidimensional array. I.e you have an array wherin each element is an array (actually a reference to an anonymous array IIRC), not a scalar. You can find the size of the array by asking for it in a scalar context, not a list context. For example my @arra

Re: Size of Array

2002-02-18 Thread Frank
On Mon, Feb 18, 2002 at 09:17:50AM -0800, Agustin wrote: > Quick one.. is there a way to evaluate the size of an array? Right now I'm > writing the arrays to a file and then doing an "ls -l" to compare sizes. The > array is of type $array[0][0] and not $array[0] (if anyone has the proper > termin