rust持续学习 get_or_insert_with

通常使用一个值

if(x===null)x=some_valid_value

忽然今天看见一段代码

rust 复制代码
pub fn get_id() -> u64 
{
let mut res = struct.data.borrow_mut();
*res.get_or_insert_with(||{
 let mut xx = ...... some logic
 let id = xx.id; 
 id});
}

感觉这个名字蛮奇怪的 insert

然后翻了一下代码,是来自option.rs,原来就是空则赋值,这个写法对我来说蛮新奇的

rust 复制代码
    #[inline]
    #[stable(feature = "option_entry", since = "1.20.0")]
    #[rustc_const_unstable(feature = "const_option_ext", issue = "91930")]
    pub const fn get_or_insert_with<F>(&mut self, f: F) -> &mut T
    where
        F: ~const FnOnce() -> T,
        F: ~const Destruct,
    {
        if let None = *self {
            // the compiler isn't smart enough to know that we are not dropping a `T`
            // here and wants us to ensure `T` can be dropped at compile time.
            mem::forget(mem::replace(self, Some(f())))
        }

        // SAFETY: a `None` variant for `self` would have been replaced by a `Some`
        // variant in the code above.
        unsafe { self.as_mut().unwrap_unchecked() }
    }
相关推荐
imuliuliang1 分钟前
Laravel3.x:PHP框架进化史上的里程碑
开发语言·php
知识分享小能手5 分钟前
Flask入门学习教程,从入门到精通, Flask模板 — 完整知识点与案例代码 (3)
python·学习·flask
kgduu9 分钟前
ethers.js学习笔记
javascript·笔记·学习
接着奏乐接着舞10 分钟前
java lambda表达式
java·开发语言·python
IT搬砖客15 分钟前
CC2340从机开发入门之OAD例程的选择
c语言·开发语言·单片机·嵌入式硬件
ch.ju19 分钟前
Java程序设计(第3版)第四章——成员方法
java·开发语言
星幻元宇VR23 分钟前
VR国防教育学习机:沉浸式国防教育新模式
科技·学习·安全·vr·虚拟现实
marsh020624 分钟前
53 openclaw插件市场:开发与发布自己的插件
开发语言·前端·javascript
牙牙学语的阿猿26 分钟前
sentinel创建规则时的坑
java·开发语言·sentinel
fai厅的秃头姐!27 分钟前
2586. 统计范围内的元音字符串数
开发语言·c#