| 6 | use std::ptr::NonNull; |
| 7 | |
| 8 | pub trait BuildTournamentTree<K, V> { |
| 9 | fn build_tournament_tree(data: &[K]) -> Tree<K, V>; |
| 10 | fn tournament_tree_pop(tree: &mut Tree<K, V>) -> Option<K>; |
| 11 | } |
| 12 | |
| 13 | impl<K, V> BuildTournamentTree<K, V> for TreeBuilder |
| 14 | where |
nothing calls this directly
no outgoing calls
no test coverage detected