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

Class Node

src/strings/tst.rs:11–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9}
10
11struct Node<T> {
12 c: usize,
13 subtries: [Option<NonNull<Node<T>>>; 3],
14 val: Option<T>,
15}
16
17impl<T> TST<T> {
18 pub fn len(&self) -> usize {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected