Versions in this module Expand all Collapse all v1 v1.0.0 Oct 4, 2021 Changes in this version + type Element struct + Key interface{} + Value interface{} + type FixedMap struct + func New(size int) FixedMap + func (fm *FixedMap) Cap() int + func (fm *FixedMap) Get(key interface{}) (interface{}, bool) + func (fm *FixedMap) Has(key interface{}) bool + func (fm *FixedMap) Iterator() *Iterator + func (fm *FixedMap) Len() int + func (fm *FixedMap) PopBack() *Element + func (fm *FixedMap) PopFront() *Element + func (fm *FixedMap) Put(key, value interface{}) *Element + func (fm *FixedMap) Remove(key interface{}) + type Iterator struct + func (i *Iterator) Element() *Element + func (i *Iterator) Next() bool