Rollup merge of #112045 - Sp00ph:update_current_impl, r=Amanieu

Followup to #111973

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

r? `@Amanieu`
This commit is contained in:
Matthias Krüger 2023-05-29 04:03:03 +02:00 committed by GitHub
commit e71b3b3cfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
///