本文简要介绍rust语言中 std::array::IntoIter.new
的用法。
用法
pub fn new(array: [T; N]) -> IntoIter<T, N>
在给定的 array
上创建一个新的迭代器。
注意:此方法将来可能会被弃用,因为std::iter::IntoIterator现在为数组实现。
例子
use std::array;
for value in array::IntoIter::new([1, 2, 3, 4, 5]) {
// The type of `value` is an `i32` here, instead of `&i32`
let _: i32 = value;
}
// Since Rust 1.53, arrays implement IntoIterator directly:
for value in [1, 2, 3, 4, 5] {
// The type of `value` is an `i32` here, instead of `&i32`
let _: i32 = value;
}
相关用法
- Rust IntoIter.as_mut_slice用法及代码示例
- Rust IntoIter.as_slice用法及代码示例
- Rust IntoIterator.into_iter用法及代码示例
- Rust IntoIterator用法及代码示例
- Rust IntoIter用法及代码示例
- Rust IntoInnerError.error用法及代码示例
- Rust IntoInnerError.into_inner用法及代码示例
- Rust IntoInnerError.into_parts用法及代码示例
- Rust IntoInnerError.into_error用法及代码示例
- Rust IntoInnerError用法及代码示例
- Rust IntoKeys用法及代码示例
- Rust Into用法及代码示例
- Rust IntoValues用法及代码示例
- Rust IntoRawFd.into_raw_fd用法及代码示例
- Rust IntErrorKind用法及代码示例
- Rust Intersection用法及代码示例
- Rust Infallible用法及代码示例
- Rust Incoming用法及代码示例
- Rust Instant.checked_duration_since用法及代码示例
- Rust Index用法及代码示例
- Rust Instant.now用法及代码示例
- Rust Instant.saturating_duration_since用法及代码示例
- Rust Instant.duration_since用法及代码示例
- Rust Instant用法及代码示例
- Rust IndexMut用法及代码示例
注:本文由纯净天空筛选整理自rust-lang.org大神的英文原创作品 std::array::IntoIter.new。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。