Versions in this module Expand all Collapse all v0 v0.0.1 Dec 11, 2023 Changes in this version + type Map interface + Clone func() Map[K, V] + ContainsKey func(key K) bool + Get func(K) V + GetOk func(key K) (V, bool) + Keys func() []K + MarshalJSON func() ([]byte, error) + Merge func(...Map[K, V]) Map[K, V] + Remove func(key K) + Set func(K, V) + Size func() int + SortKeys func(f func(x, y K) int) + SortStableKeys func(f func(x, y K) int) + Values func() []V + func NewWithConversionFunc[K any, V any, C scalars](conv func(K) C) Map[K, V] + func New[K scalars, V any]() Map[K, V]