If you replace: `iterable.into_iter().join(sep)` With ``` iterable.map(AsRef::as_ref) .collect::<Vec<_>>() .join(sep) ``` in Itertools::join the performance is 2X faster.
If you replace:
iterable.into_iter().join(sep)With
in Itertools::join the performance is 2X faster.