On 29-12-2010 00:32:40, Daniel Carrera wrote: > Hello, > > I have a few miscellaneous questions: > > 1) Does anyone know what a "Parcel" is?
I'm never sure, but it's something like a list :) > > 2) How do you figure out the length of an array? The "scalar" function > is gone. I tried "len", "length" and "size" without success. Array.elems is what you seek > > 3) More generally, is there a way to find out what methods are > available? I'm thinking of something like "@foo.METHODS" and it'd give > me a list of all the methods available in arrays. That would be > useful. You were close. That'd be Array.^methods, for example. Regards, Ted