ganit-core 0.3.11

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

#[test]
fn zero_args_returns_na() {
    assert_eq!(countunique_fn(&[]), Value::Error(ErrorKind::NA));
}