Documentation
¶
Index ¶
- type Map
- func (m *Map[K, V]) Clear()
- func (m *Map[K, V]) Empty() bool
- func (m *Map[K, V]) FromJSON(data []byte) error
- func (m *Map[K, V]) Get(key K) (value V, found bool)
- func (m *Map[K, V]) Keys() []K
- func (m *Map[K, V]) MarshalJSON() ([]byte, error)
- func (m *Map[K, V]) Put(key K, value V)
- func (m *Map[K, V]) Remove(key K)
- func (m *Map[K, V]) Size() int
- func (m *Map[K, V]) String() string
- func (m *Map[K, V]) StringToTypeS2m(b []byte) error
- func (m *Map[K, V]) ToJSON() ([]byte, error)
- func (m *Map[K, V]) TypeToStringS2m() ([]byte, error)
- func (m *Map[K, V]) UnmarshalJSON(bytes []byte) error
- func (m *Map[K, V]) Values() []V
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Map ¶
type Map[K comparable, V any] struct { // contains filtered or unexported fields }
并发安全的toolmap
func New ¶
func New[K comparable, V any]() *Map[K, V]
func (*Map[K, V]) MarshalJSON ¶
func (*Map[K, V]) StringToTypeS2m ¶
StringToTypeS2m 这个要实现指针方法不然无法赋值
func (*Map[K, V]) TypeToStringS2m ¶
TypeToStringS2m 指针非指针方法都行
func (*Map[K, V]) UnmarshalJSON ¶
Click to show internal directories.
Click to hide internal directories.