#first #last #iterator #is-last

无std iter-identify_first_last

辅助迭代器,标记第一个和最后一个元素

4个版本 (2个重大更改)

0.2.1 2024年2月19日
0.2.0 2023年6月24日
0.1.0 2022年12月26日
0.0.1 2022年12月11日

Rust模式 中排名第 692

Download history • Rust 包仓库 236/week @ 2024-03-17 • Rust 包仓库 244/week @ 2024-03-24 • Rust 包仓库 277/week @ 2024-03-31 • Rust 包仓库 263/week @ 2024-04-07 • Rust 包仓库 243/week @ 2024-04-14 • Rust 包仓库 234/week @ 2024-04-21 • Rust 包仓库 189/week @ 2024-04-28 • Rust 包仓库 176/week @ 2024-05-05 • Rust 包仓库 199/week @ 2024-05-12 • Rust 包仓库 178/week @ 2024-05-19 • Rust 包仓库 163/week @ 2024-05-26 • Rust 包仓库 171/week @ 2024-06-02 • Rust 包仓库 150/week @ 2024-06-09 • Rust 包仓库 174/week @ 2024-06-16 • Rust 包仓库 161/week @ 2024-06-23 • Rust 包仓库 50/week @ 2024-06-30 • Rust 包仓库

每月下载量 556
6 个crate中 使用 6 (5直接)

MIT/Apache

10KB
125

maintenance: actively developed

iter-identify_first_last

辅助迭代器,标记第一个和最后一个元素。

use iter_identify_first_last::IteratorIdentifyFirstLastExt;
use std::fmt::Write;

fn main() {
    let list = [1, 2, 3, 4, 5, 6];
    let mut string = String::new();
    for (is_first, item) in list.iter().identify_first() {
        if !is_first {
            string.push(' ');
        }
        write!(string, "{item}").unwrap();
    }
    assert_eq!(string, "1 2 3 4 5 6");
}

lib.rs:

功能标志

依赖项

~175KB