Lokathor / tinyvec

Just, really the littlest Vec you could need. So smol.
https://docs.rs/tinyvec
Apache License 2.0
648 stars 49 forks source link

fix `Debug` alternate mode for empty containers #162

Closed andylizi closed 2 years ago

andylizi commented 2 years ago

Consider the following code:

println!("{:#?}", tiny_vec!([u8; 16]));

I expected to see:

[]

but actually saw:

[
    ,
]
Lokathor commented 2 years ago

I don't even remember why the crate doesn't use the debug formatter builder system, and maybe it should, but this is a good fix in the mean time.