當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust RefMut.filter_map用法及代碼示例


本文簡要介紹rust語言中 core::cell::RefMut.filter_map 的用法。

用法

pub fn filter_map<U: ?Sized, F>(    orig: RefMut<'b, T>,     f: F) -> Result<RefMut<'b, U>, Self> where    F: FnOnce(&mut T) -> Option<&mut U>,

為借用數據的可選組件創建一個新的RefMut。如果閉包返回 None ,則原始保護將作為 Err(..) 返回。

RefCell 已經被可變借用,所以這不會失敗。

這是一個關聯函數,需要用作 RefMut::filter_map(...) 。方法會幹擾通過 Deref 使用的 RefCell 的內容上的同名方法。

例子

#![feature(cell_filter_map)]

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

let c = RefCell::new(vec![1, 2, 3]);

{
    let b1: RefMut<Vec<u32>> = c.borrow_mut();
    let mut b2: Result<RefMut<u32>, _> = RefMut::filter_map(b1, |v| v.get_mut(1));

    if let Ok(mut b2) = b2 {
        *b2 += 2;
    }
}

assert_eq!(*c.borrow(), vec![1, 4, 3]);

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 core::cell::RefMut.filter_map。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。