pub struct Cursor<'a, K, V>where
    K: 'a,
    V: 'a,{ /* private fields */ }
🔬This is a nightly-only experimental API. (btree_cursors #107540)
Expand description

BTreeMap 上的游标。

Cursor 类似于迭代器,不同之处在于它可以自由地来回查找。

游标总是指向树中的一个元素,并以逻辑循环的方式进行索引。 为了适应这一点,有一个 “ghost” 非元素在树的最后一个元素和第一个元素之间产生 None

Cursor 是使用 BTreeMap::lower_boundBTreeMap::upper_bound 方法创建的。

Implementations§

source§

impl<'a, K, V> Cursor<'a, K, V>

source

pub fn move_next(&mut self)

🔬This is a nightly-only experimental API. (btree_cursors #107540)

将游标移动到 BTreeMap 的下一个元素。

如果游标指向 “ghost” 非元素,那么这会将其移动到 BTreeMap 的第一个元素。 如果它指向 BTreeMap 的最后一个元素,那么这会将它移动到 “ghost” 非元素。

source

pub fn move_prev(&mut self)

🔬This is a nightly-only experimental API. (btree_cursors #107540)

将游标移动到 BTreeMap 的前一个元素。

如果游标指向 “ghost” 非元素,那么这会将其移动到 BTreeMap 的最后一个元素。 如果它指向 BTreeMap 的第一个元素,那么这会将它移动到 “ghost” 非元素。

source

pub fn key(&self) -> Option<&'a K>

🔬This is a nightly-only experimental API. (btree_cursors #107540)

将引用返回到游标当前指向的元素的键。

如果游标当前指向 “ghost” 非元素,则返回 None

source

pub fn value(&self) -> Option<&'a V>

🔬This is a nightly-only experimental API. (btree_cursors #107540)

将引用返回到游标当前指向的元素的值。

如果游标当前指向 “ghost” 非元素,则返回 None

source

pub fn key_value(&self) -> Option<(&'a K, &'a V)>

🔬This is a nightly-only experimental API. (btree_cursors #107540)

将引用返回到游标当前指向的元素的键和值。

如果游标当前指向 “ghost” 非元素,则返回 None

source

pub fn peek_next(&self) -> Option<(&'a K, &'a V)>

🔬This is a nightly-only experimental API. (btree_cursors #107540)

返回下一个元素的引用。

如果游标指向 “ghost” 非元素,则返回 BTreeMap 的第一个元素。 如果它指向 BTreeMap 的最后一个元素,则返回 None

source

pub fn peek_prev(&self) -> Option<(&'a K, &'a V)>

🔬This is a nightly-only experimental API. (btree_cursors #107540)

返回上一个元素的引用。

如果游标指向 “ghost” 非元素,则返回 BTreeMap 的最后一个元素。 如果它指向 BTreeMap 的第一个元素,则返回 None

Trait Implementations§

source§

impl<K, V> Clone for Cursor<'_, K, V>

source§

fn clone(&self) -> Cursor<'_, K, V>

返回值的副本。 Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

source 执行复制分配。 Read more
source§

impl<K, V> Debug for Cursor<'_, K, V>where K: Debug, V: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

使用给定的格式化程序格式化该值。 Read more

Auto Trait Implementations§

§

impl<'a, K, V> RefUnwindSafe for Cursor<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

§

impl<'a, K, V> Send for Cursor<'a, K, V>where K: Sync, V: Sync,

§

impl<'a, K, V> Sync for Cursor<'a, K, V>where K: Sync, V: Sync,

§

impl<'a, K, V> Unpin for Cursor<'a, K, V>

§

impl<'a, K, V> UnwindSafe for Cursor<'a, K, V>where K: RefUnwindSafe, V: RefUnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

获取 selfTypeIdRead more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

从拥有的值中一成不变地借用。 Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

从拥有的值中借用。 Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

返回未更改的参数。

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

调用 U::from(self)

也就是说,这种转换是 From<T> for U 实现选择执行的任何操作。

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

获得所有权后的结果类型。
source§

fn to_owned(&self) -> T

从借用的数据创建拥有的数据,通常是通过克隆。 Read more
source§

fn clone_into(&self, target: &mut T)

使用借来的数据来替换拥有的数据,通常是通过克隆。 Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

发生转换错误时返回的类型。
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

执行转换。
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

发生转换错误时返回的类型。
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

执行转换。