Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Tree ¶
type Tree interface { Put(key interface{}, value Value) Get(key interface{}) (values []Value, found bool) Remove(key interface{}) Empty() bool Size() int Min() (key interface{}, values []Value) PopMin() (key interface{}, values []Value) Max() (key interface{}, values []Value) PopMax() (key interface{}, values []Value) String() string }
Tree supported methods on red-black-tree
Click to show internal directories.
Click to hide internal directories.