MCPcopy Index your code
hub / github.com/douchuan/algorithm / BuildTreeInLevel

Interface BuildTreeInLevel

src/tree/binary/builder/level.rs:15–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

13use std::ptr::NonNull;
14
15pub trait BuildTreeInLevel<K, V> {
16 fn build_in_level(vec: &[&str]) -> Tree<K, V>;
17}
18
19impl<K: std::str::FromStr, V> BuildTreeInLevel<K, V> for TreeBuilder {
20 fn build_in_level(vec: &[&str]) -> Tree<K, V> {

Callers

nothing calls this directly

Implementers 1

level.rssrc/tree/binary/builder/level.rs

Calls

no outgoing calls

Tested by

no test coverage detected