当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Rust Ref.map_split用法及代码示例


本文简要介绍rust语言中 core::cell::Ref.map_split 的用法。

用法

pub fn map_split<U: ?Sized, V: ?Sized, F>(    orig: Ref<'b, T>,     f: F) -> (Ref<'b, U>, Ref<'b, V>) where    F: FnOnce(&T) -> (&U, &V),

Ref 拆分为多个 Ref 用于借用数据的不同组件。

RefCell 已经被一成不变地借用了,所以这不会失败。

这是一个关联函数,需要用作 Ref::map_split(...) 。方法会干扰通过 Deref 使用的 RefCell 的内容上的同名方法。

例子

use std::cell::{Ref, RefCell};

let cell = RefCell::new([1, 2, 3, 4]);
let borrow = cell.borrow();
let (begin, end) = Ref::map_split(borrow, |slice| slice.split_at(2));
assert_eq!(*begin, [1, 2]);
assert_eq!(*end, [3, 4]);

相关用法


注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 core::cell::Ref.map_split。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。