ganit-core 0.3.9

Spreadsheet formula engine — parser and evaluator for Excel-compatible formulas
Documentation
use crate::eval::coercion::to_bool;
use crate::eval::functions::{check_arity_len, EvalCtx};
use crate::eval::evaluate_expr;
use crate::parser::ast::Expr;
use crate::types::Value;

/// `AND(val1, ...)` — TRUE only if ALL arguments are truthy.
///
/// Short-circuits on the first false value. Returns `#VALUE!` with no args
/// or if any arg cannot be coerced to bool.
pub fn and_fn(args: &[Expr], ctx: &mut EvalCtx<'_>) -> Value {
    if let Some(err) = check_arity_len(args.len(), 1, usize::MAX) {
        return err;
    }
    for arg in args {
        let val = evaluate_expr(arg, ctx);
        match to_bool(val) {
            Ok(false) => return Value::Bool(false),
            Ok(true) => {}
            Err(e) => return e,
        }
    }
    Value::Bool(true)
}

#[cfg(test)]
mod tests;