Function gtmpl::funcs::lt[][src]

pub fn lt(args: &[Value]) -> Result<Value, FuncError>
Expand description

Returns the boolean truth of arg1 < arg2

Example

use gtmpl::template;
let less_than = template("{{ lt 0 . }}", 1);
assert_eq!(&less_than.unwrap(), "true");