indicium 0.6.9

Simple in-memory search for collections and key-value stores.
Documentation
1
2
3
4
5
6
impl<K: Ord> crate::simple::SearchIndex<K> {
    /// Clears the search index, removing all elements.
    pub fn clear(&mut self) {
        self.b_tree_map.clear();
    } // fn
} // impl