There are no attributes in this class.
clear(...)
clear()
Remove all of the items from the BTree.
has_key(...)
has_key(key)
Return true if the TreeSet contains the given key.
insert(...)
keys(...)
keys([min, max]) -> list of keys
Returns the keys of the TreeSet. If min and max are supplied, only keys greater than min and less than max are returned.
maxKey(...)
maxKey([max]) -> key
Return the largest key in the BTree. If max is specified, return the largest key <= max.
minKey(...)
minKey([mi]) -> key
Return the smallest key in the BTree. If min is specified, return the smallest key >= min.
remove(...)
update(...)
update(collection)
Add the items from the given collection.
There are no known subclasses.