Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var includes = require( '@stdlib/_tools/remark/plugins/remark-includes' );

Attaches a plugin to a [remark][remark] processor in order to insert content from external Markdown files between include comment directives.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var join = require( 'path' ).join;
Expand Down Expand Up @@ -93,7 +93,7 @@ By default, include paths are resolved relative to the processed file's director

## Examples

<!-- eslint no-undef: "error", node/no-sync: "off" -->
<!-- eslint no-undef: "error", n/no-sync: "off" -->

```javascript
var join = require( 'path' ).join;
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/ccopy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ ccopy.ndarray( 2, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -148,7 +148,7 @@ mod.initializeSync();

Copies values from `x` into `y`.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -216,7 +216,7 @@ The function has the following parameters:

Copies values from `x` into `y` using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/cscal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ cscal.ndarray( 2, ca, cx, 2, 1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -162,7 +162,7 @@ mod.initializeSync();

Scales values from `cx` by `ca`.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -230,7 +230,7 @@ The function has the following parameters:

Scales values from `cx` by `ca` using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/csrot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ csrot.ndarray( 2, cx, 2, 1, cy, 2, 1, 0.8, 0.6 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -152,7 +152,7 @@ mod.initializeSync();

Applies a plane rotation.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -226,7 +226,7 @@ The function has the following parameters:

Applies a plane rotation using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/cswap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ cswap.ndarray( 2, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -151,7 +151,7 @@ mod.initializeSync();

Interchanges two complex single-precision floating-point vectors.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -222,7 +222,7 @@ The function has the following parameters:

Interchanges two complex single-precision floating-point vectors using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/dasum/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ sum = dasum.ndarray( 3, x, -1, x.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -140,7 +140,7 @@ mod.initializeSync();

Computes the sum of absolute values.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -187,7 +187,7 @@ The function has the following parameters:

Computes the sum of absolute values using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/daxpy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ daxpy.ndarray( 3, alpha, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -151,7 +151,7 @@ mod.initializeSync();

Multiplies a vector `x` by a constant and adds the result to `y`.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -211,7 +211,7 @@ The function has the following parameters:

Multiplies a vector `x` by a constant and adds the result to `y` using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/dcopy/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ dcopy.ndarray( 3, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -145,7 +145,7 @@ mod.initializeSync();

Copies values from `x` into `y`.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -204,7 +204,7 @@ The function has the following parameters:

Copies values from `x` into `y` using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/ddot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ var z = ddot.ndarray( 3, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -145,7 +145,7 @@ mod.initializeSync();

Computes the dot product of `x` and `y`.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -199,7 +199,7 @@ The function has the following parameters:

Computes the dot product of `x` and `y` using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/dnrm2/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ var z = dnrm2.ndarray( 4, x, 2, 1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -136,7 +136,7 @@ mod.initializeSync();

Computes the L2-norm of a double-precision floating-point vector.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -182,7 +182,7 @@ The function has the following parameters:

Computes the L2-norm of a double-precision floating-point vector using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/drot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ drot.ndarray( 3, x, 2, 1, y, 2, 1, 0.8, 0.6 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -152,7 +152,7 @@ mod.initializeSync();

Applies a plane rotation.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -218,7 +218,7 @@ The function has the following parameters:

Applies a plane rotation using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/drotm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ drotm.ndarray( 3, x, 2, 1, y, 2, 1, param );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -156,7 +156,7 @@ mod.initializeSync();

Applies a modified Givens plane rotation.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -223,7 +223,7 @@ The function has the following parameters:

Applies a modified Givens plane rotation using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/dscal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ dscal.ndarray( 3, 5.0, x, 2, 1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -137,7 +137,7 @@ mod.initializeSync();

Multiplies a vector `x` by a constant `α`.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -193,7 +193,7 @@ The function has the following parameters:

Multiplies a vector `x` by a constant `α` using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/dsdot/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ var z = dsdot.ndarray( 3, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -145,7 +145,7 @@ mod.initializeSync();

Computes the dot product of `x` and `y` with extended accumulation and result.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -199,7 +199,7 @@ The function has the following parameters:

Computes the dot product of `x` and `y` with extended accumulation and result using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
6 changes: 3 additions & 3 deletions lib/node_modules/@stdlib/blas/base/wasm/dswap/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ dswap.ndarray( 3, x, 2, 1, y, -1, y.length-1 );

Returns a new WebAssembly [module wrapper][@stdlib/wasm/module-wrapper] instance which uses the provided WebAssembly [memory][@stdlib/wasm/memory] instance as its underlying memory.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand All @@ -148,7 +148,7 @@ mod.initializeSync();

Interchanges two double-precision floating point vectors.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down Expand Up @@ -212,7 +212,7 @@ The function has the following parameters:

Interchanges two double-precision floating point vectors using alternative indexing semantics.

<!-- eslint-disable node/no-sync -->
<!-- eslint-disable n/no-sync -->

```javascript
var Memory = require( '@stdlib/wasm/memory' );
Expand Down
Loading
Loading