Versions in this module Expand all Collapse all v0 v0.7.2 Jan 5, 2021 Changes in this version + var ErrNoParent = errors.New("table has no parent (closed?)") + type Table struct + Key string + Mem *mem.Mem + Parent impl.Impl + func NewTable(p impl.Impl, k string) *Table + func (t *Table) Close() error + func (t *Table) Del(k string) error + func (t *Table) Get(k string) ([]byte, error) + func (t *Table) Keys() ([]string, error) + func (t *Table) Load() error + func (t *Table) Name() string + func (t *Table) Save() error + func (t *Table) Set(k string, v []byte) error