Read Me - Common Public License V1.0 - Copyright Notice(©)

makeArray


>>-makeArray---------------------------------------------------><

Returns a single-dimension array with the same number of items as the receiver object. Any index with no associated item is omitted from the new array. Items in the new array will have the same order as the source array. Multi-dimension arrays arrays will be converted into a non-sparse single dimension array.

Array class - makeArray method

a = .array~of("Fred", , "Mike", , "David")
b = a~makeArray  -- b = .array~of("Fred", "Mike", "David")

Read Me - Common Public License V1.0 - Copyright Notice(©)