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

append


>>-append(item)------------------------------------------------><

Appends an item to the array after the last item (the item with the highest index). The return value is the index of newly added item. The append method is only valid with single-dimension arrays.

Array class - append method

   a = .array~of("Mike", "Rick")
   a~append("Fred")  -- a = .array~of("Mike", "Rick", "Fred")

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