Versions in this module Expand all Collapse all v2 v2.3.3 Oct 19, 2023 Changes in this version + type LinkedHashMap struct + func NewLinkedHashMap() *LinkedHashMap + func (linkMap *LinkedHashMap) Add(key string, val interface{}) bool + func (linkMap *LinkedHashMap) Get(key string) interface{} + func (linkMap *LinkedHashMap) GetLinkList() *list.List + func (linkMap *LinkedHashMap) Remove(key string) (bool, interface{}) + func (linkMap *LinkedHashMap) Size() int