pub trait Block<V> {
type Key;
// Required methods
fn bisect<C>(
&self,
range: &Range<V>,
collator: &Collator<C>
) -> (usize, usize)
where C: Collate<Value = V>;
fn bisect_left<C>(&self, key: &Key<V>, collator: &Collator<C>) -> usize
where C: Collate<Value = V>;
fn bisect_right<C>(&self, key: &Key<V>, collator: &Collator<C>) -> usize
where C: Collate<Value = V>;
}
Expand description
An ordered set of keys in a Node
.