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


Rust IterMut.into_slice用法及代码示例


本文简要介绍rust语言中 std::slice::IterMut.into_slice 的用法。

用法

pub fn into_slice(self) -> &'a mut [T]

将基础数据视为原始数据的子切片。

为避免创建 &mut 引用该别名,这将被强制使用迭代器。

例子

基本用法:

// First, we declare a type which has `iter_mut` method to get the `IterMut`
// struct (`&[usize]` here):
let mut slice = &mut [1, 2, 3];

{
    // Then, we get the iterator:
    let mut iter = slice.iter_mut();
    // We move to next element:
    iter.next();
    // So if we print what `into_slice` method returns here, we have "[2, 3]":
    println!("{:?}", iter.into_slice());
}

// Now let's modify a value of the slice:
{
    // First we get back the iterator:
    let mut iter = slice.iter_mut();
    // We change the value of the first element of the slice returned by the `next` method:
    *iter.next().unwrap() += 1;
}
// Now slice is "[2, 2, 3]":
println!("{:?}", slice);

相关用法


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