#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 236/week @ 2024-03-17 244/week @ 2024-03-24 277/week @ 2024-03-31 263/week @ 2024-04-07 243/week @ 2024-04-14 234/week @ 2024-04-21 189/week @ 2024-04-28 176/week @ 2024-05-05 199/week @ 2024-05-12 178/week @ 2024-05-19 163/week @ 2024-05-26 171/week @ 2024-06-02 150/week @ 2024-06-09 174/week @ 2024-06-16 161/week @ 2024-06-23 50/week @ 2024-06-30

每月下载量 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