3个版本
0.9.2 | 2019年3月20日 |
---|---|
0.9.1 | 2019年3月20日 |
0.9.0 | 2019年3月20日 |
#2702 in Rust模式
61,393 每月下载量
用于 6 个crate(3 个直接使用)
10KB
102 行
join-lazy-fmt
Rust中的懒加载
separator.join(iterable)
方法以及lazy_format!
用法
-
将以下行添加到您的
Cargo.toml
中,在[dependencies]
join-lazy-fmt = "0.9.2"
-
将以下行添加到您的
.rs
代码中,以引入作用域内的项use ::join_lazy_fmt::*;
示例
use ::join_lazy_fmt::*;
let sequence = format!("[{}]", ", ".join(0 .. 5));
assert_eq!(sequence, "[0, 1, 2, 3, 4]");
// Since `.join()` is lazy, this does not compute an infinite string.
let _ = ", ".join(0 ..);
const N: usize = 6;
let line = format!("+-{}-+", "-+-".join((1 .. N).map(|_| "---")));
// And the following allocates only one `String`:
let matrix = format!(
"{line}\n{body}\n{line}\n",
line=line,
body="\n".join(
(1 .. N).map(|i| lazy_format!(
"| {row} |",
row=" | ".join(
(1 .. N).map(|j| lazy_format!(
"a{i}{j}",
i=i,
j=j,
))
),
))
),
);
assert_eq!(matrix, "\
+-----+-----+-----+-----+-----+
| a11 | a12 | a13 | a14 | a15 |
| a21 | a22 | a23 | a24 | a25 |
| a31 | a32 | a33 | a34 | a35 |
| a41 | a42 | a43 | a44 | a45 |
| a51 | a52 | a53 | a54 | a55 |
+-----+-----+-----+-----+-----+
");