mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
cd7ad97987
Add `const Default` impls for `HashSet` and `HashMap` with custom `Hasher` Follow up to rust-lang/rust#134628. Tracking issue rust-lang/rust#143894. r? @fmease cc @fee1-dead @oli-obk This doesn't allow for `const H: HashSet<()> = Default::default();`, but would allow for it to work with a custom hasher, which would enable the `Fx*` family to work.