Skip to content

Commit 1bd16cd

Browse files
authored
Rollup merge of rust-lang#131197 - EFanZh:avoid-emptyness-check-in-peekmut-pop, r=Amanieu
Avoid emptiness check in `PeekMut::pop` This PR avoids an unnecessary emptiness check in `PeekMut::pop` by replacing `Option::unwrap` with `Option::unwrap_unchecked`.
2 parents 86fa474 + 8cfa0ca commit 1bd16cd

File tree

1 file changed

+4
-1
lines changed
  • alloc/src/collections/binary_heap

1 file changed

+4
-1
lines changed

alloc/src/collections/binary_heap/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,10 @@ impl<'a, T: Ord, A: Allocator> PeekMut<'a, T, A> {
374374
// the caller could've mutated the element. It is removed from the
375375
// heap on the next line and pop() is not sensitive to its value.
376376
}
377-
this.heap.pop().unwrap()
377+
378+
// SAFETY: Have a `PeekMut` element proves that the associated binary heap being non-empty,
379+
// so the `pop` operation will not fail.
380+
unsafe { this.heap.pop().unwrap_unchecked() }
378381
}
379382
}
380383

0 commit comments

Comments
 (0)