Skip to content

Commit

Permalink
2.1.0-rc.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mmomtchev committed Mar 26, 2022
1 parent c6e745a commit dc84d06
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,12 +231,16 @@ Returns **string** 

Generic vector operation with implicit traversal.

Supports automatic type conversions, multiple inputs and writing into a pre-existing array.
Supports automatic type conversions, multiple inputs, strided N-dimensional arrays and writing into a pre-existing array.

If using N-dimensional arrays, all arrays must have the same shape. The result is always in positive row-major order.
When mixing linear vectors and N-dimensional arrays, the linear vectors are considered to be in positive row-major order
in relation to the N-dimensional arrays.

#### Parameters

* `threads` **number?** 
* `arguments` **Record\<string, (number | TypedArray\<any> | ndarray.NdArray\<any>)>**&#x20;
* `arguments` **Record\<string, (number | TypedArray\<any> | ndarray.NdArray\<any> | stdlib.ndarray)>**&#x20;
* `target` **TypedArray\<T>?**&#x20;

#### Examples
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"postpublish": "gh workflow run test-npm.yml -F version=$npm_package_version"
},
"name": "exprtk.js",
"version": "2.0.0",
"version": "2.1.0-rc.0",
"description": "JS Mathematical Expression Toolkit Library",
"repository": {
"type": "git",
Expand Down

0 comments on commit dc84d06

Please sign in to comment.