Skip to main content

write_joined

Function write_joined 

pub fn write_joined<W, I>(
    writer: &mut W,
    values: I,
    separator: &str,
) -> Result<(), Error>
where W: Write + ?Sized, I: IntoIterator, <I as IntoIterator>::Item: Display,
Expand description

Write fmt::Display values separated by separator without allocating.