mirror of
https://github.com/emirpasic/gods
synced 2024-11-06 15:20:25 +00:00
19 lines
756 B
Go
19 lines
756 B
Go
|
package examples
|
||
|
|
||
|
import "github.com/emirpasic/gods/maps/treemap"
|
||
|
|
||
|
func treemapExample() {
|
||
|
m := treemap.NewWithIntComparator() // empty (keys are of type int)
|
||
|
m.Put(1, "x") // 1->x
|
||
|
m.Put(2, "b") // 1->x, 2->b (in order)
|
||
|
m.Put(1, "a") // 1->a, 2->b (in order)
|
||
|
_, _ = m.Get(2) // b, true
|
||
|
_, _ = m.Get(3) // nil, false
|
||
|
_ = m.Values() // []interface {}{"a", "b"} (in order)
|
||
|
_ = m.Keys() // []interface {}{1, 2} (in order)
|
||
|
m.Remove(1) // 2->b
|
||
|
m.Clear() // empty
|
||
|
m.Empty() // true
|
||
|
m.Size() // 0
|
||
|
}
|