CERNY.event.List
This script offers an array augmentor which provides methodes to add and remove items which will notify observers of the respective event.
Used by
Functions
List
Augments an array to signal events regarding its items.
addItem
Add an item to the end of the list. Notify observers of EVT_ITEM_ADDED.
insertItemAt
Insert an item at a specific position in the list. Notify observers of EVT_ITEM_INSERTED with the index of the inserted item.
removeItem
Remove an item from the list. Notify observers of EVT_ITEM_REMOVED with the index of the remove item.
sortItems
Sort the items of the list according to a comparator. Notify observers of EVT_REARRANGED.

