Documentation
¶
Index ¶
- func Contains(collection, item interface{}) bool
- func Each(collection Map, cb Iterator)
- func IsMappable(value interface{}) bool
- func IsSliceable(value interface{}) bool
- type ConcreteMap
- func (data *ConcreteMap) Count() int
- func (data *ConcreteMap) Delete(key interface{})
- func (data *ConcreteMap) Except(keys []interface{}) Map
- func (data *ConcreteMap) Get(key interface{}) interface{}
- func (data *ConcreteMap) Has(key interface{}) bool
- func (data *ConcreteMap) IsEmpty() bool
- func (data *ConcreteMap) IsNil(key interface{}) bool
- func (data *ConcreteMap) Keys() (keys []interface{})
- func (data *ConcreteMap) NotNil(key interface{}) bool
- func (data *ConcreteMap) Set(key, value interface{})
- func (data *ConcreteMap) String() string
- type Iterator
- type Map
- type Reducer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsMappable ¶
func IsMappable(value interface{}) bool
func IsSliceable ¶
func IsSliceable(value interface{}) bool
Types ¶
type ConcreteMap ¶
type ConcreteMap map[interface{}]interface{}
type Map ¶
type Map interface {
IsEmpty() bool
Count() int
Keys() []interface{}
Has(key interface{}) bool
Except(keys []interface{}) Map
IsNil(key interface{}) bool
NotNil(key interface{}) bool
Get(key interface{}) interface{}
Set(key interface{}, value interface{})
Delete(key interface{})
String() string
}
Click to show internal directories.
Click to hide internal directories.