eqty

Macro eqty 

Source
macro_rules! eqty {
    ($t:ty; $lhs:expr, $rhs:expr, $( $args:expr ),+) => { ... };
    ($t:ty; $lhs:expr, $rhs:expr) => { ... };
}
Expand description

equal with type cast

ยงExample

assert!(eq!(u32, 1u64, 1i32, 1u8));