MCPcopy Create free account
hub / github.com/douchuan/algorithm / Node

Class Node

src/strings/tries.rs:58–61  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

56}
57
58struct Node<T> {
59 val: Option<T>,
60 next: Vec<Option<NonNull<Node<T>>>>,
61}
62
63impl<T> TrieST<T> {
64 /// Returns the number of key-value pairs in this symbol table.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected