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.

Examples

Here is an example simple but useless.

rust 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.

```rust let mut map = HashMap::, String>::new(); map.insert(Box::new(false), "bool".tostring()); map.insert(Box::new(0), "int".tostring()); map.insert(Box::new(""), "string".to_string());

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

What's New

At version 0.2.0.