Documentation
¶
Overview ¶
Package dictionary provides utilities for operating on map-like types.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type I ¶
type I interface {
Get(key interface{}) (val interface{})
Set(key, val interface{})
Lookup(key interface{}) (val interface{}, ok bool)
Contains(key interface{}) bool
Delete(key interface{})
Clear()
Len() int
Entries() []Entry
KeyTy() reflect.Type
ValTy() reflect.Type
KeysSorted() []interface{}
}
I is the interface for a dictionary.
Click to show internal directories.
Click to hide internal directories.