package
2.8.3
Repository: https://github.com/gogf/gf.git
Documentation: pkg.go.dev

# Functions

New creates and returns an empty hash map.
NewAnyAnyMap creates and returns an empty hash map.
NewAnyAnyMapFrom creates and returns a hash map from given map `data`.
NewFrom creates and returns a hash map from given map `data`.
NewHashMap creates and returns an empty hash map.
NewHashMapFrom creates and returns a hash map from given map `data`.
NewIntAnyMap returns an empty IntAnyMap object.
NewIntAnyMapFrom creates and returns a hash map from given map `data`.
NewIntIntMap returns an empty IntIntMap object.
NewIntIntMapFrom creates and returns a hash map from given map `data`.
NewIntStrMap returns an empty IntStrMap object.
NewIntStrMapFrom creates and returns a hash map from given map `data`.
NewListMap returns an empty link map.
NewListMapFrom returns a link map from given map `data`.
NewStrAnyMap returns an empty StrAnyMap object.
NewStrAnyMapFrom creates and returns a hash map from given map `data`.
NewStrIntMap returns an empty StrIntMap object.
NewStrIntMapFrom creates and returns a hash map from given map `data`.
NewStrStrMap returns an empty StrStrMap object.
NewStrStrMapFrom creates and returns a hash map from given map `data`.
NewTreeMap instantiates a tree map with the custom comparator.
NewTreeMapFrom instantiates a tree map with the custom comparator and `data` map.

# Structs

AnyAnyMap wraps map type `map[interface{}]interface{}` and provides more map features.
IntAnyMap implements map[int]interface{} with RWMutex that has switch.
IntIntMap implements map[int]int with RWMutex that has switch.
IntStrMap implements map[int]string with RWMutex that has switch.
ListMap is a map that preserves insertion-order.
StrAnyMap implements map[string]interface{} with RWMutex that has switch.
StrIntMap implements map[string]int with RWMutex that has switch.
StrStrMap implements map[string]string with RWMutex that has switch.

# Type aliases

TreeMap based on red-black tree, alias of RedBlackTree.