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

new (Class Method)


>>-new-+----------------+--------------------------------------><
       |    +-,----+    |
       |    V      |    |
       +-(----size-+--)-+

Returns a new empty array. If you specify any [size] arguments, the size is taken as a hint about how big each dimension should be. The Array classes uses this only to allocate the initial array object. For multiple dimension arrays, you can also specify how much space is to be allocated initially for each dimension of the array.

Each [size] argument must a non-negative whole number. If it is 0, the corresponding dimension is initially empty.

Array class - of method

   a = .array~new()  -- create an new, empty array

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