Versions in this module Expand all Collapse all v2 v2.0.1 Jun 6, 2021 Changes in this version + type KV interface + GetKey func() interface{} + GetValue func() interface{} + type KVs interface + Contains func(key interface{}) bool + GetValueOr func(key interface{}, defValue interface{}) interface{} + IfContains func(key interface{}, action func(value interface{})) KVs + func NewKVs(kvs ...KV) KVs + type SimpleKV struct + Key interface{} + Value interface{} + func (s *SimpleKV) GetKey() interface{} + func (s *SimpleKV) GetValue() interface{} + type SimpleKVs struct + func (kvs *SimpleKVs) Contains(key interface{}) bool + func (kvs *SimpleKVs) GetValueOr(key interface{}, defValue interface{}) interface{} + func (kvs *SimpleKVs) IfContains(key interface{}, action func(value interface{})) KVs Other modules containing this package github.com/cyannuk/beego_orm