We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc6db14 commit 0fd9934Copy full SHA for 0fd9934
src/libstd/primitive_docs.rs
@@ -683,6 +683,10 @@ mod prim_str { }
683
/// assert_eq!(tuple.2, 'c');
684
/// ```
685
///
686
+/// The sequential nature of the tuple applies to its implementations of various
687
+/// traits. For example, in `PartialOrd` and `Ord`, the elements are compared
688
+/// sequentially until the first non-equal set is found.
689
+///
690
/// For more about tuples, see [the book](../book/ch03-02-data-types.html#the-tuple-type).
691
692
/// # Trait implementations
0 commit comments