cmp_wrap/strict/
mod.rs

1//! The strict option will not let you compare different types
2//! even if they're mapped (keyed) to comparable Key types.
3//!
4//! Please notice that you have to use the same function signature for all of the
5//! strict Cmp types, which means you'll have to build them using reference to the
6//! same closure if you chose to create CmpByKey yourselves and not use the context.
7mod wrappers;
8mod context;
9
10pub use wrappers::CmpByKey;
11pub use context::KeyCmpContext;