devela/num/ord/
reexports.rs

1// devela::num::ord::reexports
2//
3//! Reexported items from `core`.
4//
5
6use crate::reexport;
7
8reexport! { rust: core::cmp, doc: "A helper struct for reverse ordering.",
9    Reverse
10}
11
12reexport! { rust: core::cmp,
13    doc: "The result of a comparison between two values.",
14    Ordering
15}
16
17/// <span class='stab portability' title='re-exported from rust&#39;s `core`'>`core`</span>
18#[doc(inline)]
19pub use core::cmp::{Eq, Ord, PartialEq, PartialOrd};