about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorHavvy (Ryan Scheel) <ryan.havvy@gmail.com>2018-09-02 22:26:38 -0700
committerHavvy (Ryan Scheel) <ryan.havvy@gmail.com>2018-10-05 17:41:42 -0700
commit7e57f0a6a8fd4e5df7890613918f4a2c3b5a1fb7 (patch)
treee6d48391a1441a47aeac1a7b5ce6fcddbb691deb /src/liballoc
parentb8bea5a0a6aef3966008787a25949344f8cf6942 (diff)
downloadrust-7e57f0a6a8fd4e5df7890613918f4a2c3b5a1fb7.tar.gz
rust-7e57f0a6a8fd4e5df7890613918f4a2c3b5a1fb7.zip
Doc total order requirement of sort(_unstable)_by
I took the definition of what a total order is from the Ord trait
docs. I specifically put "elements of the slice" because if you
have a slice of f64s, but know none are NaN, then sorting by
partial ord is total in this case. I'm not sure if I should give
such an example in the docs or not.
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/slice.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/liballoc/slice.rs b/src/liballoc/slice.rs
index 33d28bef2d7..2ded376b395 100644
--- a/src/liballoc/slice.rs
+++ b/src/liballoc/slice.rs
@@ -211,6 +211,13 @@ impl<T> [T] {
     ///
     /// This sort is stable (i.e. does not reorder equal elements) and `O(n log n)` worst-case.
     ///
+    /// The comparator function must define a total ordering for the elements in the slice. If
+    /// the ordering is not total, the order of the elements is unspecified. An order is a
+    /// total order if it is (for all a, b and c):
+    ///
+    /// * total and antisymmetric: exactly one of a < b, a == b or a > b is true; and
+    /// * transitive, a < b and b < c implies a < c. The same must hold for both == and >.
+    ///
     /// When applicable, unstable sorting is preferred because it is generally faster than stable
     /// sorting and it doesn't allocate auxiliary memory.
     /// See [`sort_unstable_by`](#method.sort_unstable_by).