File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed
Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ So far we have the following features:
1313
1414- 18 date time functions
1515- 26 text functions
16+ - 26 math functions
1617- 7 logical functions
1718- 2 web functions
1819- plus all arithmetic and comparison operators
@@ -24,8 +25,7 @@ Add this library to your project with `cargo add formula` or add `formula = "*"`
2425Use it similar to the following code:
2526
2627``` rust
27- use formula :: {Formula , Expr , error :: Error };
28- use anyhow :: Result ;
28+ use formula :: {Formula , Expr , error :: Error , Result };
2929
3030fn main () -> Result <()> {
3131 let formula = Formula :: new (" =UPPER(TRIM(' Hello '))" )? ;
@@ -46,6 +46,11 @@ fn main() -> Result<()> {
4646
4747We would love to have your contribution! Please read our [ contributing guidelines] ( CONTRIBUTING.md ) to get started.
4848
49+ ### Inspired by
50+
51+ - [ formulajs] ( https://github.com/formulajs/formulajs )
52+ - [ hyperformula] ( https://github.com/handsontable/hyperformula )
53+
4954### License
5055
5156This project is licensed under the MIT license. See the [ LICENSE] ( LICENSE.md ) file for more info.
You can’t perform that action at this time.
0 commit comments