Versions in this module Expand all Collapse all v1 v1.12.0 Sep 22, 2018 v1.11.0 Sep 21, 2018 Changes in this version + type Iterator struct + func (iterator *Iterator) Begin() + func (iterator *Iterator) End() + func (iterator *Iterator) First() bool + func (iterator *Iterator) Key() interface{} + func (iterator *Iterator) Last() bool + func (iterator *Iterator) Next() bool + func (iterator *Iterator) Prev() bool + func (iterator *Iterator) Value() interface{} + type Map struct + func New() *Map + func (m *Map) All(f func(key interface{}, value interface{}) bool) bool + func (m *Map) Any(f func(key interface{}, value interface{}) bool) bool + func (m *Map) Clear() + func (m *Map) Each(f func(key interface{}, value interface{})) + func (m *Map) Empty() bool + func (m *Map) Find(f func(key interface{}, value interface{}) bool) (interface{}, interface{}) + func (m *Map) FromJSON(data []byte) error + func (m *Map) Get(key interface{}) (value interface{}, found bool) + func (m *Map) Iterator() Iterator + func (m *Map) Keys() []interface{} + func (m *Map) Map(f func(key1 interface{}, value1 interface{}) (interface{}, interface{})) *Map + func (m *Map) Put(key interface{}, value interface{}) + func (m *Map) Remove(key interface{}) + func (m *Map) Select(f func(key interface{}, value interface{}) bool) *Map + func (m *Map) Size() int + func (m *Map) String() string + func (m *Map) ToJSON() ([]byte, error) + func (m *Map) Values() []interface{}