Versions in this module Expand all Collapse all v1 v1.0.0 Oct 20, 2024 Changes in this version + type Map struct + func NewWithCapacity[K comparable, V any](capacity int) *Map[K, V] + func New[K comparable, V any]() *Map[K, V] + func (m *Map[K, V]) All() iter.Seq2[K, V] + func (m *Map[K, V]) Clear() + func (m *Map[K, V]) Delete(key K) + func (m *Map[K, V]) Get(key K) (value V, ok bool) + func (m *Map[K, V]) Len() int + func (m *Map[K, V]) Set(key K, value V)