#join #items #list #string #prefix #suffix #separator

join_to_string

将项目列表连接成字符串/缓冲区

3 个版本

使用旧的 Rust 2015

0.1.3 2019 年 1 月 9 日
0.1.2 2019 年 1 月 9 日
0.1.1 2018 年 8 月 28 日
0.1.0 2018 年 8 月 28 日

#2419Rust 模式

Download history 38/week @ 2023-11-27 31/week @ 2023-12-04 30/week @ 2023-12-11 34/week @ 2023-12-18 30/week @ 2023-12-25 30/week @ 2024-01-01 32/week @ 2024-01-08 33/week @ 2024-01-15 33/week @ 2024-01-22 32/week @ 2024-01-29 32/week @ 2024-02-05 47/week @ 2024-02-12 49/week @ 2024-02-19 64/week @ 2024-02-26 52/week @ 2024-03-04 54/week @ 2024-03-11

225 每月下载量

MIT/Apache

7KB
66 代码行

join

Build Status Crates.io API reference

将项目列表连接成字符串

extern crate join_to_string;
use join_to_string::join;

fn main() {
    let mut buf = String::new();
    join([1, 2, 3].iter())
        .separator(", ")
        .prefix("(")
        .suffix(")")
        .to_buf(&mut buf); // .to_string()
    assert_eq!(buf, "(1, 2, 3)");
}

无运行时依赖