any_cmp

Crates.ioany_cmp
lib.rsany_cmp
version0.5.1
created_at2023-09-05 13:55:34.235907+00
updated_at2025-07-14 08:11:20.676762+00
descriptionSupport dynamic type comparisons.
homepage
repositoryhttps://github.com/nossie531/any_cmp
max_upload_size
id964334
size29,625
(nossie531)

documentation

README

any_cmp

Support dynamic type comparisons.

The author of this crate is not good at English.
Forgive me if the document is hard to read.

What is this?

This crate provides traits that are comparable and can be dynamic types.

Mainly includes the following items.

name summary
AnyEq Like std::cmp::Eq.
AnyHash Like std::hash::Hash.
AnyOrd Like std::cmp::Ord.
AnyPartialEq Like std::cmp::PartialEq.
AnyPartialOrd Like std::cmp::PartialOrd.
ObjHash Trait that combines AnyEq and AnyHash.

Examples

Here is an example simple but useless.

let x = &42 as &dyn AnyEq;
let y = &42 as &dyn AnyEq;
let z = &"42" as &dyn AnyEq;
assert!(x == y);
assert!(x != z);

Here is an example of using dynamic types for HashMap keys.

let mut map = HashMap::<Box<dyn ObjHash>, String>::new();
map.insert(Box::new(false), "bool".to_string());
map.insert(Box::new(0), "int".to_string());
map.insert(Box::new(""), "string".to_string());

assert_eq!(map[&false as &dyn ObjHash], "bool");
assert_eq!(map[&0 as &dyn ObjHash], "int");
assert_eq!(map[&"" as &dyn ObjHash], "string");

Versions

See CHANGELOG.

Commit count: 8

cargo fmt