GitXplorerGitXplorer
j

base_trie

public
2 stars
0 forks
0 issues

Commits

List of commits on branch master.
Unverified
6d6e42f07e8db3f89036b9b97a1cfde619a7b1b1

v0.18~preview.130.00+55

ppublic-release committed 3 months ago
Unverified
93feab78af8da16277e8cf61417f103a877a926e

v0.17~preview.129.36+325

ppublic-release committed 5 months ago
Unverified
d2aaf7bce6a0dc81124856aab403547fe838d733

v0.17~preview.129.17+77

ppublic-release committed 9 months ago
Unverified
4a198143083001f388da2b6b9aecf0b426c012d1

v0.17~preview.129.17+77

ppublic-release committed 9 months ago
Unverified
bcce6e6748d2012e7b69dec3d02248a753229676

v0.17~preview.129.15+205

ppublic-release committed 10 months ago
Unverified
0d0fa337fa447c72730e6a900e3a7c05d598ca05

v0.17~preview.129.07+242

ppublic-release committed a year ago

README

The README file for this repository.

Trie data structure library

This library provides an implementation of a trie data structure.

Lookup is based on "chains" of keys; each node of the trie has children representing each potential next key in the chain. See Keychainable.

This interface is modeled after Base.Map for element lookup by keychains. It also provides trie-node lookup by keychains.