Versions in this module Expand all Collapse all v1 v1.0.1 Apr 8, 2022 Changes in this version + var Compare = func(a, b interface{}) int + var Multi = false + type Iterator struct + func (iterator Iterator) Key() K + func (iterator Iterator) Value() V + type K int + type Map struct + func CopyFrom(tm *Map) *Map + func New() *Map + func (m *Map) Begin() Iterator + func (m *Map) Each(f func(key K, value V)) + func (m *Map) End() Iterator + func (m *Map) Find(f func(key K, value V) bool) (k K, v V) + func (m *Map) Get(key K) Iterator + func (m *Map) Insert(key K, value V) Iterator + func (m *Map) Iterator() Iterator + func (m *Map) Keys() []K + func (m *Map) LowerBound(key K) Iterator + func (m *Map) Put(key K, value V) + func (m *Map) Remove(key K) + func (m *Map) UnmarshalJSON(data []byte) error + func (m *Map) UpperBound(key K) Iterator + func (m *Map) Values() []V + func (m Map) MarshalJSON() ([]byte, error) + func (m Map) String() string + type V int