Versions in this module Expand all Collapse all v0 v0.0.1 Jul 1, 2021 Changes in this version + var ErrorAlreadyExists = errors.New("path already exists") + var ErrorDataIsNil = errors.New("data is nil") + var ErrorNoCommonPrefix = errors.New("no common prefix") + type Node struct + func New(path string, data interface{}) (*Node, error) + func (n *Node) Add(path string, data interface{}) error + func (n *Node) Lookup(path string) (interface{}, []string) + func (n *Node) String() string + func (n *Node) StringIndent(indent string) string