| 103 | } |
| 104 | |
| 105 | pub struct InvertedIndex { |
| 106 | pub path: PathBuf, |
| 107 | pub tree: Tree<KVPair, InvertedIndexItem>, |
| 108 | } |
| 109 | |
| 110 | pub fn compress_indices(indices: Vec<usize>) -> Vec<usize> { |
| 111 | let mut compressed = Vec::new(); |
nothing calls this directly
no outgoing calls
no test coverage detected