cmp_wrap 0.2.2

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

pub use wrappers::CmpByKey;
pub use context::KeyCmpContext;