Versions in this module Expand all Collapse all v1 v1.2.10 Dec 12, 2025 Changes in this version + type Hashmap interface + Delete func(key K) (deleted bool) + 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[K comparable, V any]() LinkedHashmap[K, V]