Versions in this module Expand all Collapse all v0 v0.2.0 Jun 26, 2026 v0.1.0 May 5, 2026 Changes in this version + type ByteMap struct + func NewByteMap(a mem.Allocator, size, ksize, vsize int) ByteMap + func (m *ByteMap) Clear() + func (m *ByteMap) Free() + func (m *ByteMap) Len() int + func (m *ByteMap) Resize(size int) + type Iter struct + func (it *Iter[K, V]) Key() K + func (it *Iter[K, V]) Next() bool + func (it *Iter[K, V]) Value() V + type Map struct + func New[K comparable, V any](a mem.Allocator, size int) Map[K, V] + func (m *Map[K, V]) Clear() + func (m *Map[K, V]) Delete(key K) + func (m *Map[K, V]) Free() + func (m *Map[K, V]) Get(key K) V + func (m *Map[K, V]) Has(key K) bool + func (m *Map[K, V]) Iter() Iter[K, V] + func (m *Map[K, V]) Len() int + func (m *Map[K, V]) Set(key K, value V)