pub(crate) fn write_many<const N: usize>(
output: &mut (impl Write + ?Sized),
arr: [&str; N],
) -> Result<usize>Available on crate feature
formatting only.Expand description
Write all strings to the output (in order), returning the total number of bytes written.