Skip to content

Commit

Permalink
Rollup merge of rust-lang#112045 - Sp00ph:update_current_impl, r=Amanieu
Browse files Browse the repository at this point in the history
Followup to rust-lang#111973

I somehow forgot to update the comment on `select_nth_unstable_by_key` in rust-lang#111973, so this PR fixes that.

r? `@Amanieu`
  • Loading branch information
matthiaskrgr authored May 29, 2023
2 parents 760d46e + 448a388 commit e71b3b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions library/core/src/slice/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3113,8 +3113,9 @@ impl<T> [T] {
///
/// # Current implementation
///
/// The current algorithm is based on the quickselect portion of the same quicksort algorithm
/// used for [`sort_unstable`].
/// The current algorithm is an introselect implementation based on Pattern Defeating Quicksort, which is also
/// the basis for [`sort_unstable`]. The fallback algorithm is Median of Medians using Tukey's Ninther for
/// pivot selection, which guarantees linear runtime for all inputs.
///
/// [`sort_unstable`]: slice::sort_unstable
///
Expand Down

0 comments on commit e71b3b3

Please sign in to comment.