parent
fdf219dd42
commit
8b81f76593
1 changed files with 2 additions and 0 deletions
|
|
@ -166,6 +166,8 @@ impl Ordering {
|
||||||
///
|
///
|
||||||
/// - total and antisymmetric: exactly one of `a < b`, `a == b` or `a > b` is true; and
|
/// - 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 `>`.
|
/// - transitive, `a < b` and `b < c` implies `a < c`. The same must hold for both `==` and `>`.
|
||||||
|
///
|
||||||
|
/// When this trait is `derive`d, it produces a lexicographic ordering.
|
||||||
#[stable(feature = "rust1", since = "1.0.0")]
|
#[stable(feature = "rust1", since = "1.0.0")]
|
||||||
pub trait Ord: Eq + PartialOrd<Self> {
|
pub trait Ord: Eq + PartialOrd<Self> {
|
||||||
/// This method returns an `Ordering` between `self` and `other`.
|
/// This method returns an `Ordering` between `self` and `other`.
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue