hibit_tree 0.1.0-beta.1

Hierarchical bitmap tree. Integer-key map that can intersect FAST.
Documentation
1
2
3
4
5
6
pub trait LendingIterator{
    // The only place where GAT work as needed?
    type Item<'a> where Self:'a;
    
    fn next(&mut self) -> Option<Self::Item<'_>>;
}