Search Apps Documentation Source Content File Folder Download Copy Actions Download State String Boolean Number Struct Map Slice Pointer Function Closure Reference Nil Package Type Interface Unknown

doc.gno

0.33 Kb · 7 lines
1// Package trie provides a simple prefix-tree (trie) for storing key-value data
2// in Gno realms.
3//
4// Keys are strings ordered lexicographically by their raw bytes and values can
5// be of any type. Tree implements the avl.ITree interface from
6// `gno.land/p/nt/avl`, so it can be used as an alternative to an AVL tree.
7package trie