Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Map ¶
type Map[K comparable, V any] interface { Size() int IsEmpty() bool ContainsKey(k K) bool Found(k K) (V, bool) Get(k K) V Put(k K, v V) Remove(k K) Clear() Keys() []K Values() []V ForEach(f func(k K, v V) bool) json.Marshaler json.Unmarshaler }
func NewLinkedHashMap ¶
func NewLinkedHashMap[K comparable, V any]() Map[K, V]
Click to show internal directories.
Click to hide internal directories.