skillet 0.6.2

Skillet: micro expression language (arithmetic, logical, functions, arrays, conditionals, excel formulas) made in Rust bin cli and server
Documentation
pub mod evaluation;
pub mod evaluator;
pub mod builtin_functions;
pub mod function_dispatch;
pub mod method_calls;
pub mod type_casting;
pub mod utils;
pub mod arithmetic;
pub mod logical;
pub mod string;
pub mod array;
pub mod datetime;
pub mod financial;
pub mod statistical;
pub mod json;
pub mod jsonpath;

// Re-export the main public functions
pub use evaluation::{eval, eval_with_vars, eval_with_vars_and_custom, eval_with_assignments, eval_with_assignments_and_context};
pub use type_casting::cast_value;
pub use utils::{is_blank, clamp_index, index_array, slice_array, values_equal};