devela/num/cmp/
reexports.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// devela::num::cmp::reexports
//
//! Reexported items from `core`.
//

use crate::reexport;

reexport! { rust: core::cmp, doc: "A helper struct for reverse ordering.",
    Reverse
}

reexport! { rust: core::cmp,
    doc: "The result of a comparison between two values.",
    Ordering
}

/// <span class='stab portability' title='re-exported from rust&#39;s `core`'>`core`</span>
#[doc(inline)]
pub use core::cmp::{Eq, Ord, PartialEq, PartialOrd};