Versions in this module Expand all Collapse all v1 v1.9.8 Jun 28, 2023 Changes in this version + type Hashmap interface + Delete func(key K) + Get func(key K) (val V, exists bool) + Len func() int + Put func(key K, val V) + type Iter interface + Key func() K + Next func() bool + Value func() V + type LinkedHashmap interface + NewIterator func() Iter[K, V] + Newest func() (key K, val V, exists bool) + Oldest func() (key K, val V, exists bool) + func New() LinkedHashmap[K, V] v1.9.8-rc.9 Jun 28, 2023