Function assert_ne

Source
pub fn assert_ne(lhs: Dynamic, rhs: Dynamic) -> Result<bool, Box<EvalAltResult>>
Expand description

Assert that two arguments are unequal and throw an error if they are not.

assert_ne(2, 1);