Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: update namespace exports #1386

Closed
wants to merge 1 commit into from
Closed
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
36 changes: 36 additions & 0 deletions lib/node_modules/@stdlib/array/base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -432,6 +432,33 @@ setReadOnly( ns, 'copyIndexed', require( '@stdlib/array/base/copy-indexed' ) );
*/
setReadOnly( ns, 'countFalsy', require( '@stdlib/array/base/count-falsy' ) );

/**
* @name countIf
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/array/base/count-if}
*/
setReadOnly( ns, 'countIf', require( '@stdlib/array/base/count-if' ) );

/**
* @name countSameValue
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/array/base/count-same-value}
*/
setReadOnly( ns, 'countSameValue', require( '@stdlib/array/base/count-same-value' ) );

/**
* @name countSameValueZero
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/array/base/count-same-value-zero}
*/
setReadOnly( ns, 'countSameValueZero', require( '@stdlib/array/base/count-same-value-zero' ) );

/**
* @name countTruthy
* @memberof ns
Expand Down Expand Up @@ -1431,6 +1458,15 @@ setReadOnly( ns, 'unarynd', require( '@stdlib/array/base/unarynd' ) );
*/
setReadOnly( ns, 'unitspace', require( '@stdlib/array/base/unitspace' ) );

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

/**
* @name zeroTo
* @memberof ns
Expand Down
63 changes: 63 additions & 0 deletions lib/node_modules/@stdlib/assert/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1557,6 +1557,15 @@
*/
setReadOnly( ns, 'isndarrayLike', require( '@stdlib/assert/is-ndarray-like' ) );

/**
* @name isNegativeFinite
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/assert/is-negative-finite}
*/
setReadOnly( ns, 'isNegativeFinite', require( '@stdlib/assert/is-negative-finite' ) );

/**
* @name isNegativeInteger
* @memberof ns
Expand Down Expand Up @@ -1710,6 +1719,15 @@
*/
setReadOnly( ns, 'isNonEnumerablePropertyIn', require( '@stdlib/assert/is-nonenumerable-property-in' ) );

/**
* @name isNonnegativeFinite
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/assert/is-nonnegative-finite}
*/
setReadOnly( ns, 'isNonnegativeFinite', require( '@stdlib/assert/is-nonnegative-finite' ) );

/**
* @name isNonNegativeInteger
* @memberof ns
Expand Down Expand Up @@ -1746,6 +1764,15 @@
*/
setReadOnly( ns, 'isNonNegativeNumberArray', require( '@stdlib/assert/is-nonnegative-number-array' ) );

/**
* @name isNonpositiveFinite
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/assert/is-nonpositive-finite}
*/
setReadOnly( ns, 'isNonpositiveFinite', require( '@stdlib/assert/is-nonpositive-finite' ) );

/**
* @name isNonPositiveInteger
* @memberof ns
Expand Down Expand Up @@ -1908,6 +1935,15 @@
*/
setReadOnly( ns, 'isPlainObjectArray', require( '@stdlib/assert/is-plain-object-array' ) );

/**
* @name isPositiveFinite
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/assert/is-positive-finite}
*/
setReadOnly( ns, 'isPositiveFinite', require( '@stdlib/assert/is-positive-finite' ) );

/**
* @name isPositiveInteger
* @memberof ns
Expand Down Expand Up @@ -2025,6 +2061,15 @@
*/
setReadOnly( ns, 'isPrototypeOf', require( '@stdlib/assert/is-prototype-of' ) );

/**
* @name isRaggedNestedArray
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/assert/is-ragged-nested-array}
*/
setReadOnly( ns, 'isRaggedNestedArray', require( '@stdlib/assert/is-ragged-nested-array' ) );

/**
* @name isRangeError
* @memberof ns
Expand Down Expand Up @@ -2601,6 +2646,15 @@
*/
setReadOnly( ns, 'IS_WEB_WORKER', require( '@stdlib/assert/is-web-worker' ) );

/**
* @name isWellFormedString
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/assert/is-well-formed-string}
*/
setReadOnly( ns, 'isWellFormedString', require( '@stdlib/assert/is-well-formed-string' ) );

/**
* @name isWhitespace
* @memberof ns
Expand Down Expand Up @@ -2655,6 +2709,15 @@
*/
setReadOnly( ns, 'isWriteOnlyPropertyIn', require( '@stdlib/assert/is-write-only-property-in' ) );

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

Check warning on line 2719 in lib/node_modules/@stdlib/assert/lib/index.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

File has too many lines (303). Maximum allowed is 300

/**
* @name tools
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/complex/base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ setReadOnly( ns, 'assert', require( '@stdlib/complex/base/assert' ) );
*/
setReadOnly( ns, 'cast', require( '@stdlib/complex/base/cast-return' ) );

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

/**
* @name wrap
* @memberof ns
Expand Down
18 changes: 18 additions & 0 deletions lib/node_modules/@stdlib/complex/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,24 @@ setReadOnly( ns, 'imag', require( '@stdlib/complex/imag' ) );
*/
setReadOnly( ns, 'imagf', require( '@stdlib/complex/imagf' ) );

/**
* @name parseFloat32
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/parse-float32}
*/
setReadOnly( ns, 'parseFloat32', require( '@stdlib/complex/parse-float32' ) );

/**
* @name parseFloat64
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/complex/parse-float64}
*/
setReadOnly( ns, 'parseFloat64', require( '@stdlib/complex/parse-float64' ) );

/**
* @name complexPromotionRules
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/iter/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -513,6 +513,15 @@ setReadOnly( ns, 'iterUnitspace', require( '@stdlib/iter/unitspace' ) );
*/
setReadOnly( ns, 'iterUnshift', require( '@stdlib/iter/unshift' ) );

/**
* @name untilEach
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/iter/until-each}
*/
setReadOnly( ns, 'untilEach', require( '@stdlib/iter/until-each' ) );

/**
* @name whileEach
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/math/base/special/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -756,6 +756,15 @@ setReadOnly( special, 'cround', require( '@stdlib/math/base/special/cround' ) );
*/
setReadOnly( special, 'croundn', require( '@stdlib/math/base/special/croundn' ) );

/**
* @name csc
* @memberof special
* @readonly
* @type {Function}
* @see {@link module:@stdlib/math/base/special/csc}
*/
setReadOnly( special, 'csc', require( '@stdlib/math/base/special/csc' ) );

/**
* @name csch
* @memberof special
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/math/iter/sequences/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,15 @@ setReadOnly( ns, 'iterSquaresSeq', require( '@stdlib/math/iter/sequences/squares
*/
setReadOnly( ns, 'iterTriangularSeq', require( '@stdlib/math/iter/sequences/triangular' ) );

/**
* @name tribonacci
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/math/iter/sequences/tribonacci}
*/
setReadOnly( ns, 'tribonacci', require( '@stdlib/math/iter/sequences/tribonacci' ) );


// EXPORTS //

Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/ndarray/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,15 @@ setReadOnly( ns, 'defaults', require( '@stdlib/ndarray/defaults' ) );
*/
setReadOnly( ns, 'dispatch', require( '@stdlib/ndarray/dispatch' ) );

/**
* @name dispatchBy
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/ndarray/dispatch-by}
*/
setReadOnly( ns, 'dispatchBy', require( '@stdlib/ndarray/dispatch-by' ) );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be included.


/**
* @name dtype
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/random/array/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,15 @@ setReadOnly( ns, 'rayleigh', require( '@stdlib/random/array/rayleigh' ) );
*/
setReadOnly( ns, 't', require( '@stdlib/random/array/t' ) );

/**
* @name tools
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/random/array/tools}
*/
setReadOnly( ns, 'tools', require( '@stdlib/random/array/tools' ) );

/**
* @name triangular
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/random/base/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,15 @@ setReadOnly( random, 'rayleigh', require( '@stdlib/random/base/rayleigh' ) );
*/
setReadOnly( random, 'reviveBasePRNG', require( '@stdlib/random/base/reviver' ) );

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

/**
* @name t
* @memberof random
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/random/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,15 @@ setReadOnly( ns, 'array', require( '@stdlib/random/array' ) );
*/
setReadOnly( ns, 'base', require( '@stdlib/random/base' ) );

/**
* @name exponential
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/random/exponential}
*/
setReadOnly( ns, 'exponential', require( '@stdlib/random/exponential' ) );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be exported until finalized.


/**
* @name iterators
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/random/strided/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,15 @@ setReadOnly( ns, 'rayleigh', require( '@stdlib/random/strided/rayleigh' ) );
*/
setReadOnly( ns, 't', require( '@stdlib/random/strided/t' ) );

/**
* @name tools
* @memberof ns
* @readonly
* @type {Function}
* @see {@link module:@stdlib/random/strided/tools}
*/
setReadOnly( ns, 'tools', require( '@stdlib/random/strided/tools' ) );

/**
* @name uniform
* @memberof ns
Expand Down
9 changes: 9 additions & 0 deletions lib/node_modules/@stdlib/strided/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,15 @@ setReadOnly( strided, 'base', require( '@stdlib/strided/base' ) );
*/
setReadOnly( strided, 'dispatch', require( '@stdlib/strided/dispatch' ) );

/**
* @name dispatchBy
* @memberof strided
* @readonly
* @type {Function}
* @see {@link module:@stdlib/strided/dispatch-by}
*/
setReadOnly( strided, 'dispatchBy', require( '@stdlib/strided/dispatch-by' ) );
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should not be exported until finalized.


/**
* @name dtypes
* @memberof strided
Expand Down
Loading
Loading