diff --git a/README.md b/README.md index 7aff1f7..d6ebddb 100644 --- a/README.md +++ b/README.md @@ -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\ | ndarray.NdArray\)>** +* `arguments` **Record\ | ndarray.NdArray\ | stdlib.ndarray)>** * `target` **TypedArray\?** #### Examples diff --git a/package-lock.json b/package-lock.json index dc8ba94..0ac176b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "exprtk.js", - "version": "2.0.0", + "version": "2.1.0-rc.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "exprtk.js", - "version": "2.0.0", + "version": "2.1.0-rc.0", "hasInstallScript": true, "license": "ISC", "dependencies": { diff --git a/package.json b/package.json index 13d9f5d..d7b6260 100644 --- a/package.json +++ b/package.json @@ -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",