ganit-core 0.3.10

Spreadsheet formula engine — parser and evaluator for Excel-compatible formulas
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::super::*;
use crate::types::Value;

#[test]
fn empty_find_text() {
    assert_eq!(
        findb_fn(&[
            Value::Text("".to_string()),
            Value::Text("Hello".to_string())
        ]),
        Value::Number(1.0)
    );
}