Versions in this module Expand all Collapse all v0 v0.1.0 May 8, 2020 Changes in this version + type FeatureMap struct + func New() *FeatureMap + func (fm *FeatureMap) Delete(key string) (value interface{}, ok bool) + func (fm *FeatureMap) EntriesIter() func() (*KVPair, bool) + func (fm *FeatureMap) EntriesReverseIter() func() (*KVPair, bool) + func (fm *FeatureMap) Get(key string) interface{} + func (fm *FeatureMap) GetValue(key string) (value interface{}, ok bool) + func (fm *FeatureMap) Has(key string) bool + func (fm *FeatureMap) Keys() []string + func (fm *FeatureMap) Len() int + func (fm *FeatureMap) MarshalJSON() ([]byte, error) + func (fm *FeatureMap) Set(key string, value interface{}) + func (fm *FeatureMap) UnmarshalJSON(data []byte) error + func (fm *FeatureMap) Values() []interface{} + type KVPair struct + Key string + Value interface{}