Class Container-Uses-Nodes-Mixin

Part of:

package metabang.cl-containers, class abstract-container, class binary-search-tree, class quad-tree, class dlist-container, class heap-container

Direct Superclass

abstract-container

Inherited by all container classes, this is a good place to
put those pesky superclasses you need...

Direct Subclass

binary-search-tree
dlist-container

A double-linked list

heap-container
quad-tree

Direct Method

%operate-after-finding
delete-element
delete-item
find-element

For now, compare find-item.

find-item

Find item in container using the container's test
method for comparisons. The test method must ta...

insert-item

Adds item to the container

iterate-elements
predecessor

Return the item that comes before item in the container. Only makes sense for sorted containers...

search-for-node
search-for-node*
successor

Return the item that comes after item in the container. Only makes sense for sorted containers. R...