ufmt/impls/
array.rs

1use crate::{uDebug, uWrite, Formatter};
2
3macro_rules! array {
4    ($($N:expr),+) => {
5        $(
6            impl<T> uDebug for [T; $N]
7            where
8                T: uDebug,
9            {
10                fn fmt<W>(&self, f: &mut Formatter<'_, W>) -> Result<(), W::Error>
11                    where
12                    W: uWrite + ?Sized,
13                {
14                    <[T] as uDebug>::fmt(self, f)
15                }
16            }
17        )+
18    }
19}
20
21array!(
22    0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25,
23    26, 27, 28, 29, 30, 31, 32
24);