ganit-core 0.4.0

Spreadsheet formula engine — parser and evaluator for Excel-compatible formulas
Documentation
1
2
3
4
5
6
7
use super::super::*;
use crate::types::{ErrorKind, Value};

#[test]
fn too_many_args() {
    assert_eq!(now_fn(&[Value::Number(0.0)]), Value::Error(ErrorKind::NA));
}