pub fn print_array<I: IntoIterator>(
    items: I,
    f: &mut Formatter<'_>,
    options: &Options,
    indent: usize,
    sizes: &[Size],
    index: &mut usize
) -> Resultwhere
    I::IntoIter: ExactSizeIterator,
    I::Item: PrintWithSize,