Versions in this module Expand all Collapse all v1 v1.1.1 Dec 18, 2024 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[K comparable, V any]() LinkedHashmap[K, V]