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