Versions in this module Expand all Collapse all v0 v0.1.0 Apr 17, 2025 v0.0.2 Mar 27, 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]