Versions in this module Expand all Collapse all v0 v0.0.2 Mar 28, 2024 v0.0.1 Jan 15, 2024 Changes in this version + type Dict struct + func NewDict() *Dict + func (d *Dict) Data() map[string]interface{} + func (d *Dict) Delete(key string) (interface{}, bool) + func (d *Dict) Get(key string) (interface{}, bool) + func (d *Dict) GetOrPut(key string, value interface{}) (interface{}, bool) + func (d *Dict) GetOrPutFunc(key string, f func(string) (interface{}, error)) (interface{}, bool) + func (d *Dict) Len() int + func (d *Dict) Put(key string, value interface{}) (interface{}, bool) Other modules containing this package github.com/ZYallers/golib