usestd::any::Any;/// Checks if the parameter 1 is not equal type and value to parameter 2
////// # Examples
/// ```rust
/// use r_unit::is_not_equal;
////// let a = 5;
/// let b = 6;
/// is_not_equal::is_not_equal(&a, &b);
/// ```
pubfnis_not_equal<A: Any +PartialEq<B>, B: Any>(a:&A, b:&B){if a == b {panic!("r-unit catched: Parameter 1 is equal to parameter 2")}}