pub struct Cursor<'a, K>where
K: 'a,
{ /* private fields */ }๐ฌThis is a nightly-only experimental API. (btree_cursors #107540)
Expand description
A cursor over a BTreeSet.
A Cursor is like an iterator, except that it can freely seek back-and-forth.
Cursors always point to a gap between two elements in the set, and can operate on the two immediately adjacent elements.
A Cursor is created with the BTreeSet::lower_bound and BTreeSet::upper_bound methods.
Sourceยง
Source ๐ฌThis is a nightly-only experimental API. (btree_cursors #107540)
btree_cursors #107540)Advances the cursor to the next gap, returning the element that it moved over.
If the cursor is already at the end of the set then None is returned
and the cursor is not moved.
Source ๐ฌThis is a nightly-only experimental API. (btree_cursors #107540)
btree_cursors #107540)Advances the cursor to the previous gap, returning the element that it moved over.
If the cursor is already at the start of the set then None is returned
and the cursor is not moved.