(data: &[K])
| 15 | K: Copy + std::cmp::Ord + Minimal, |
| 16 | { |
| 17 | fn build_tournament_tree(data: &[K]) -> Tree<K, V> { |
| 18 | do_build(data) |
| 19 | } |
| 20 | |
| 21 | fn tournament_tree_pop(tree: &mut Tree<K, V>) -> Option<K> { |
| 22 | pop(tree) |
nothing calls this directly
no test coverage detected