Documentation ¶
Index ¶
- type Map
- func (m *Map) Count() int
- func (m *Map) Delete(key interface{})
- func (m *Map) Get(key interface{}) interface{}
- func (m *Map) GetOrSet(key interface{}, value interface{}) interface{}
- func (m *Map) LockFunc(f func(Map map[interface{}]interface{})) *Map
- func (m *Map) ReadLockFunc(f func(Map map[interface{}]interface{})) *Map
- func (m *Map) Set(key interface{}, value interface{})
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Map ¶
type Map struct { Map map[interface{}]interface{} // // contains filtered or unexported fields }
Map parameter structure
func (*Map) GetOrSet ¶
func (m *Map) GetOrSet(key interface{}, value interface{}) interface{}
GetOrSet ...
func (*Map) ReadLockFunc ¶
ReadLockFunc locks writing by callback function <f>
Click to show internal directories.
Click to hide internal directories.