INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |
-- switches the list to the mode of automatic memory allocation
-- for new slots; it can be necessary only if 'allocate_manually'
-- was called before because, by default, all types of the lists
-- allocate memory automatically
-- forbids the list to allocate memory for new slots automatically
-- and sets the total amount of slots allocated in the list to be
-- equal to 'new_capacity' - being negligent after that in manual
-- allocating extra slots for new entries to be put might lead to
-- the exception of type SCIF ("container is full")
--
-- tells the container if its entries must be unigue
-- puts all entries from 'other' into the list
-- adds the entry into the list
-- deletes the entry from the list
-- deletes the entry from the list together with all its
-- duplicates if more than one copy is currently stored
-- looks for the element: after every successful attempt 'found'
-- is set to true and 'found_item' - to the found element
-- in case of failure 'found' is set to false
-- remove all entries from the list
-- gives the number of all slots allocated in the list (all types
-- of the lists may have not only slots occupied by the entries
-- already put into but unused ones also)
-- gives the number of the duplicates of the entry inclusive; if
-- 'unique_items = true' then the number can be only zero or one
-- delivers a new cursor positioned to the entry; if there is no
-- such entry currently stored in the list Void is delivered
-- is the entry currently stored in the list ?
-- delivers the entry of the list the cursor is positioned to
INDEX | CLUSTER | FEATURES | SHORT | FRAMES | NO FRAMES |