Superclass: g-object tree-model
A Lisp implementation of tree-model interface suitable for using in tree-view widgets. array-list-store contains a list of objects and a list of columns. Each column has a number (starting from zero) and is specified by its GType and reader function.
(store-add-column list-store name reader)
Adds the column named name (a string) into list-store and associate reader as a reader function for this column.
(store-add-item list-store item)
Adds the item to list-store.
(store-items-count list-store) => count
Returns the count of items in a list-store
(store-remove-item list-store item &key (test 'eq))
Removes the first item from list-store (using test as a comparison function).