Add const Default impls for HashSet and HashMap with custom Hasher#151190
Add const Default impls for HashSet and HashMap with custom Hasher#151190rust-bors[bot] merged 1 commit intorust-lang:mainfrom
const Default impls for HashSet and HashMap with custom Hasher#151190Conversation
|
|
const Default impls for HashSet and HashMap with custom Hahserconst Default impls for HashSet and HashMap with custom Hasher
3173ea4 to
5f58acb
Compare
|
@bors r+ rollup |
This comment has been minimized.
This comment has been minimized.
What is this?This is an experimental post-merge analysis report that shows differences in test outcomes between the merged PR and its parent PR.Comparing fe98ddc (parent) -> cd7ad97 (this PR) Test differencesShow 226 test diffs226 doctest diffs were found. These are ignored, as they are noisy. Test dashboardRun cargo run --manifest-path src/ci/citool/Cargo.toml -- \
test-dashboard cd7ad97987010603f0007288547927e648e9a369 --output-dir test-dashboardAnd then open Job duration changes
How to interpret the job duration changes?Job durations can vary a lot, based on the actual runner instance |
|
Finished benchmarking commit (cd7ad97): comparison URL. Overall result: no relevant changes - no action needed@rustbot label: -perf-regression Instruction countThis benchmark run did not return any relevant results for this metric. Max RSS (memory usage)Results (primary 1.0%)A less reliable metric. May be of interest, but not used to determine the overall result above.
CyclesResults (primary -4.8%, secondary 4.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Binary sizeResults (primary -0.1%)A less reliable metric. May be of interest, but not used to determine the overall result above.
Bootstrap: 473.229s -> 472.349s (-0.19%) |
Follow up to #134628. Tracking issue #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 theFx*family to work.