#push #back #mut

push_mut

将值推送到向量的末尾,并返回对其的可变引用

1 个不稳定版本

0.1.0 2023年10月13日

#2252 in Rust 模式

MIT/Apache

3KB

push_mut

Crates.io Downloads Documentation License Dependency Status

将值推送到向量的末尾,并返回对其的可变引用。

示例

use push_mut::PushMut;

fn main() {
    let mut v = Vec::with_capacity(1);
    let last = v.push_mut(1);
    assert_eq!(*last, 1);
    *last = 2;
    assert_eq!(*last, 2);   
}

无运行时依赖