parent
1283c02955
commit
2a3568f14b
1 changed files with 5 additions and 2 deletions
|
@ -1064,8 +1064,11 @@ impl<T> [T] {
|
|||
|
||||
/// This is equivalent to `self.sort_by(|a, b| a.cmp(b))`.
|
||||
///
|
||||
/// This sort is stable and `O(n log n)` worst-case, but allocates
|
||||
/// temporary storage half the size of `self`.
|
||||
/// This sort is stable and `O(n log n)` worst-case.
|
||||
///
|
||||
/// # Current Implementation
|
||||
///
|
||||
/// The current implementation allocates temporary storage half the size of `self`.
|
||||
///
|
||||
/// # Examples
|
||||
///
|
||||
|
|
Loading…
Add table
Reference in a new issue