We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ccb607d + 38a0ed9 commit 9b71440Copy full SHA for 9b71440
gitoxide-core/src/hours/util.rs
@@ -42,6 +42,12 @@ impl<'a> From<&'a WorkByEmail> for WorkByPerson {
42
}
43
44
45
+/// Combine all iterator elements into one String, separated by `sep`.
46
+///
47
+/// Use the `Display` implementation of each element.
48
49
+/// extracted from
50
+/// https://github.com/rust-itertools/itertools/blob/762643f1be2217140a972745cf4d6ed69435f722/src/lib.rs#L2295-L2324
51
fn join<I>(mut iter: I, sep: &str) -> String
52
where
53
I: Iterator,
0 commit comments