Function gtmpl::funcs::ne [] [src]

pub fn ne(args: &[Value]) -> Result<Value, String>

Returns the boolean truth of arg1 != arg2

Example

use gtmpl::template;
let not_equal = template("{{ ne 2 . }}", 1);
assert_eq!(&not_equal.unwrap(), "true");