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 @@ -205,7 +205,7 @@ function clbk( error, repo, info ) {
### Usage

```bash
Usage: ghwatching [options]
Usage: ghwatching [options]

Options:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ date,army_size,disease,wounds,other

## References

- Nightingale, Florence. 1859. [_A contribution to the sanitary history of the British army during the late war with Russia_][@nightingale:1859a]. London, United Kingdom: John W. Parker and Son.
- Nightingale, Florence. 1859. [_A contribution to the sanitary history of the British army during the late war with Russia_][@nightingale:1859a]. London, United Kingdom: John W. Parker and Son.

</section>

Expand Down
36 changes: 36 additions & 0 deletions lib/node_modules/@stdlib/ndarray/base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -301,6 +301,15 @@ setReadOnly( ns, 'empty', require( '@stdlib/ndarray/base/empty' ) );
*/
setReadOnly( ns, 'emptyLike', require( '@stdlib/ndarray/base/empty-like' ) );

/**
* @name every
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/ndarray/base/every}
*/
setReadOnly( ns, 'every', require( '@stdlib/ndarray/base/every' ) );

/**
* @name expandDimensions
* @memberof ns
Expand Down Expand Up @@ -391,6 +400,15 @@ setReadOnly( ns, 'scalar2ndarray', require( '@stdlib/ndarray/base/from-scalar' )
*/
setReadOnly( ns, 'scalar2ndarrayLike', require( '@stdlib/ndarray/base/from-scalar-like' ) );

/**
* @name includes
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/ndarray/base/includes}
*/
setReadOnly( ns, 'includes', require( '@stdlib/ndarray/base/includes' ) );

/**
* @name ind
* @memberof ns
Expand Down Expand Up @@ -904,6 +922,15 @@ setReadOnly( ns, 'transpose', require( '@stdlib/ndarray/base/transpose' ) );
*/
setReadOnly( ns, 'unary', require( '@stdlib/ndarray/base/unary' ) );

/**
* @name unaryAccumulate
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/ndarray/base/unary-accumulate}
*/
setReadOnly( ns, 'unaryAccumulate', require( '@stdlib/ndarray/base/unary-accumulate' ) );

/**
* @name unaryBy
* @memberof ns
Expand Down Expand Up @@ -931,6 +958,15 @@ setReadOnly( ns, 'unaryLoopOrder', require( '@stdlib/ndarray/base/unary-loop-int
*/
setReadOnly( ns, 'unaryOutputDataType', require( '@stdlib/ndarray/base/unary-output-dtype' ) );

/**
* @name unaryReduceSubarray
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/ndarray/base/unary-reduce-subarray}
*/
setReadOnly( ns, 'unaryReduceSubarray', require( '@stdlib/ndarray/base/unary-reduce-subarray' ) );

/**
* @name unaryBlockSize
* @memberof ns
Expand Down
Loading