any_cmp/lib.rs
1//! Support dynamic type comparisons.
2//!
3//! *The author of this crate is not good at English.*
4//! *Forgive me if the document is hard to read.*
5
6#![warn(missing_docs)]
7
8pub mod prelude;
9
10mod any_eq;
11mod any_hash;
12mod any_ord;
13mod any_partial_eq;
14mod any_partial_ord;
15mod obj_hash;
16
17pub use any_eq::*;
18pub use any_hash::*;
19pub use any_ord::*;
20pub use any_partial_eq::*;
21pub use any_partial_ord::*;
22pub use obj_hash::*;