Versions in this module Expand all Collapse all v1 v1.0.1 Nov 19, 2020 Changes in this version + type Iterator interface + Key func() interface{} + Next func() bool + Values func() []Value type Tree + Iterator func() Iterator + Topology func() string v1.0.0 Nov 19, 2020 Changes in this version + type Tree interface + Empty func() bool + Get func(key interface{}) (values []Value, found bool) + Max func() (key interface{}, values []Value) + Min func() (key interface{}, values []Value) + PopMax func() (key interface{}, values []Value) + PopMin func() (key interface{}, values []Value) + Put func(key interface{}, value Value) + Remove func(key interface{}) + Size func() int + String func() string + func New(comparator utils.Comparator) (Tree, error) + type Value = pkg.Value