ganit-core 0.2.1

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;

/// `IF(condition, then, [else])` — conditional evaluation.
///
/// Accepts 2 or 3 arguments. The condition is evaluated and coerced to `bool`
/// via [`to_bool`]. Only the taken branch is evaluated (short-circuit).
/// With 2 arguments, the false case returns `Value::Bool(false)`.
pub fn if_fn(args: &[Expr], ctx: &mut EvalCtx<'_>) -> Value {
    if let Some(err) = check_arity_len(args.len(), 2, 3) {
        return err;
    }
    let condition = evaluate_expr(&args[0], ctx);
    let cond_bool = match to_bool(condition) {
        Ok(b) => b,
        Err(e) => return e,
    };
    if cond_bool {
        evaluate_expr(&args[1], ctx)
    } else if args.len() == 3 {
        evaluate_expr(&args[2], ctx)
    } else {
        Value::Bool(false)
    }
}

#[cfg(test)]
mod tests;