cmap

package
v1.1.3 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 29, 2024 License: Apache-2.0 Imports: 4 Imported by: 2

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]

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL