mirror of
https://github.com/rust-lang/rust.git
synced 2025-12-30 09:15:31 +00:00
Avoid emptiness check in `PeekMut::pop` This PR avoids an unnecessary emptiness check in `PeekMut::pop` by replacing `Option::unwrap` with `Option::unwrap_unchecked`.