Versions in this module Expand all Collapse all v1 v1.11.13-rc.2 Dec 4, 2024 v1.0.0 Dec 4, 2024 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]