I generally find `Default::default()` to be harmfu...
# development
a
I generally find
Default::default()
to be harmful compared to
HashMap::default()
(and wrote a clippy lint to enforce that), because the latter is so much more clear to read
a
ah, that might make more sense
oh yes