jsonlogic 0.5.1

A JsonLogic implementation in Rust
Documentation
use serde_json::{json, Value};

use super::{logic, Data, Expression};

/// Logical negation ("not"). Takes just one argument.
pub fn compute(args: &[Expression], data: &Data) -> Value {
    let a = args.get(0).map(|a| a.compute(data)).unwrap_or(json!(null));

    Value::Bool(!logic::is_truthy(&a))
}

#[cfg(test)]
mod tests {
    use super::*;
    use crate::compute_const;

    #[test]
    fn test() {
        assert_eq!(compute_const!(), Value::Bool(true));
        assert_eq!(compute_const!(json!(null)), Value::Bool(true));
        assert_eq!(compute_const!(json!(false)), Value::Bool(true));
        assert_eq!(compute_const!(json!(true)), Value::Bool(false));
    }
}