Skip to content

Commit 4637105

Browse files
committed
Auto-generated commit
1 parent 8b71ded commit 4637105

File tree

2 files changed

+0
-157
lines changed

2 files changed

+0
-157
lines changed

CHANGELOG.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@
5858

5959
##### Features
6060

61-
- [`58e795d`](https://github.com/stdlib-js/stdlib/commit/58e795db467b7bd1d3dc6c5847f91a97fed2ccff) - update namespace TypeScript declarations [(#3937)](https://github.com/stdlib-js/stdlib/pull/3937)
6261
- [`14427c7`](https://github.com/stdlib-js/stdlib/commit/14427c79bc62f82b16cbadc9d34749901e48d105) - add `fill`, `map`, and `toReversed` to namespace
6362
- [`a0d6619`](https://github.com/stdlib-js/stdlib/commit/a0d66193409576538d0f16aa89cbaeedec7898be) - add `minSignedIntegerDataType` and `minUnsignedIntegerDataType` to namespace
6463
- [`8b1548f`](https://github.com/stdlib-js/stdlib/commit/8b1548fb45c1ff131f5edac20cb984344a2d28ec) - update namespace TypeScript declarations [(#3190)](https://github.com/stdlib-js/stdlib/pull/3190)
@@ -387,7 +386,6 @@ A total of 3 people contributed to this release. Thank you to the following cont
387386

388387
<details>
389388

390-
- [`58e795d`](https://github.com/stdlib-js/stdlib/commit/58e795db467b7bd1d3dc6c5847f91a97fed2ccff) - **feat:** update namespace TypeScript declarations [(#3937)](https://github.com/stdlib-js/stdlib/pull/3937) _(by stdlib-bot, Philipp Burckhardt)_
391389
- [`c106b69`](https://github.com/stdlib-js/stdlib/commit/c106b69cc141efc8c32e79d55ad8acf07f3c9c0a) - **docs:** update namespace table of contents [(#3939)](https://github.com/stdlib-js/stdlib/pull/3939) _(by stdlib-bot, Philipp Burckhardt)_
392390
- [`58f02bf`](https://github.com/stdlib-js/stdlib/commit/58f02bf605d6879cd80152f11f913451df2ad494) - **docs:** fix comment _(by Athan Reines)_
393391
- [`baffefb`](https://github.com/stdlib-js/stdlib/commit/baffefb25177147fa3bafa5c1d0562a7528d5054) - **docs:** fix comment _(by Athan Reines)_

base/docs/types/index.d.ts

Lines changed: 0 additions & 155 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ import dtypes2signatures = require( './../../../base/dtypes2signatures' );
5050
import empty = require( './../../../base/empty' );
5151
import emptyLike = require( './../../../base/empty-like' );
5252
import expandDimensions = require( './../../../base/expand-dimensions' );
53-
import fill = require( './../../../base/fill' );
5453
import flag = require( './../../../base/flag' );
5554
import flags = require( './../../../base/flags' );
5655
import fliplr = require( './../../../base/fliplr' );
@@ -60,13 +59,10 @@ import scalar2ndarray = require( './../../../base/from-scalar' );
6059
import ind = require( './../../../base/ind' );
6160
import ind2sub = require( './../../../base/ind2sub' );
6261
import iterationOrder = require( './../../../base/iteration-order' );
63-
import map = require( './../../../base/map' );
6462
import maxViewBufferIndex = require( './../../../base/max-view-buffer-index' );
6563
import maybeBroadcastArray = require( './../../../base/maybe-broadcast-array' );
6664
import maybeBroadcastArrays = require( './../../../base/maybe-broadcast-arrays' );
6765
import metaDataProps = require( './../../../base/meta-data-props' );
68-
import minSignedIntegerDataType = require( './../../../base/min-signed-integer-dtype' );
69-
import minUnsignedIntegerDataType = require( './../../../base/min-unsigned-integer-dtype' );
7066
import minViewBufferIndex = require( './../../../base/min-view-buffer-index' );
7167
import minmaxViewBufferIndex = require( './../../../base/minmax-view-buffer-index' );
7268
import ndarraylike2ndarray = require( './../../../base/ndarraylike2ndarray' );
@@ -107,7 +103,6 @@ import strides2offset = require( './../../../base/strides2offset' );
107103
import strides2order = require( './../../../base/strides2order' );
108104
import sub2ind = require( './../../../base/sub2ind' );
109105
import ndarray2array = require( './../../../base/to-array' );
110-
import toReversed = require( './../../../base/to-reversed' );
111106
import transpose = require( './../../../base/transpose' );
112107
import unary = require( './../../../base/unary' );
113108
import unaryBy = require( './../../../base/unary-by' );
@@ -943,44 +938,6 @@ interface Namespace {
943938
*/
944939
expandDimensions: typeof expandDimensions;
945940

946-
/**
947-
* Fills an input ndarray with a specified value.
948-
*
949-
* @param x - input ndarray
950-
* @param value - scalar value
951-
*
952-
* @example
953-
* var Float64Array = require( '@stdlib/array/float64' );
954-
*
955-
* // Create a data buffer:
956-
* var xbuf = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ] );
957-
*
958-
* // Define the shape of the input array:
959-
* var shape = [ 3, 1, 2 ];
960-
*
961-
* // Define the array strides:
962-
* var sx = [ 2, 2, 1 ];
963-
*
964-
* // Define the index offset:
965-
* var ox = 0;
966-
*
967-
* // Create the input ndarray-like object:
968-
* var x = {
969-
* 'dtype': 'float64',
970-
* 'data': xbuf,
971-
* 'shape': shape,
972-
* 'strides': sx,
973-
* 'offset': ox,
974-
* 'order': 'row-major'
975-
* };
976-
*
977-
* ns.fill( x, 10.0 );
978-
*
979-
* console.log( x.data );
980-
* // => <Float64Array>[ 10.0, 10.0, 10.0, 10.0, 10.0, 10.0 ]
981-
*/
982-
fill: typeof fill;
983-
984941
/**
985942
* Returns a specified flag for a provided ndarray.
986943
*
@@ -1334,50 +1291,6 @@ interface Namespace {
13341291
*/
13351292
iterationOrder: typeof iterationOrder;
13361293

1337-
/**
1338-
* Applies a callback function to the elements in an input ndarray and assigns results to the elements in an output ndarray.
1339-
*
1340-
* @param arrays - array-like object containing one input ndarray and one output ndarray
1341-
* @param fcn - callback function
1342-
* @param thisArg - callback function execution context
1343-
* @throws arrays must have the same number of dimensions
1344-
* @throws arrays must have the same shape
1345-
*
1346-
* @example
1347-
* var Float64Array = require( '@stdlib/array/float64' );
1348-
* var ndarray = require( './../../../ctor' );
1349-
*
1350-
* function scale( x ) {
1351-
* return x * 10.0;
1352-
* }
1353-
*
1354-
* // Create data buffers:
1355-
* var xbuf = new Float64Array( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0, 7.0, 8.0, 9.0, 10.0, 11.0, 12.0 ] );
1356-
* var ybuf = new Float64Array( 6 );
1357-
*
1358-
* // Define the shape of the input and output arrays:
1359-
* var shape = [ 3, 1, 2 ];
1360-
*
1361-
* // Define the array strides:
1362-
* var sx = [ 4, 4, 1 ];
1363-
* var sy = [ 2, 2, 1 ];
1364-
*
1365-
* // Define the index offsets:
1366-
* var ox = 1;
1367-
* var oy = 0;
1368-
*
1369-
* // Create the input and output ndarrays:
1370-
* var x = ndarray( 'float64', xbuf, shape, sx, ox, 'row-major' );
1371-
* var y = ndarray( 'float64', ybuf, shape, sy, oy, 'row-major' );
1372-
*
1373-
* // Apply the ns.map function:
1374-
* ns.map( [ x, y ], scale );
1375-
*
1376-
* console.log( y.data );
1377-
* // => <Float64Array>[ 20.0, 30.0, 60.0, 70.0, 100.0, 110.0 ]
1378-
*/
1379-
map: typeof map;
1380-
13811294
/**
13821295
* Computes the maximum linear index in an underlying data buffer accessible to an array view.
13831296
*
@@ -1571,38 +1484,6 @@ interface Namespace {
15711484
*/
15721485
metaDataProps: typeof metaDataProps;
15731486

1574-
/**
1575-
* Returns the minimum ndarray data type for storing a provided signed integer value.
1576-
*
1577-
* @param value - scalar value
1578-
* @returns ndarray data type
1579-
*
1580-
* @example
1581-
* var dt = ns.minSignedIntegerDataType( 1280 );
1582-
* // returns 'int16'
1583-
*
1584-
* @example
1585-
* var dt = ns.minSignedIntegerDataType( 3 );
1586-
* // returns 'int8'
1587-
*/
1588-
minSignedIntegerDataType: typeof minSignedIntegerDataType;
1589-
1590-
/**
1591-
* Returns the minimum ndarray data type for storing a provided unsigned integer value.
1592-
*
1593-
* @param value - scalar value
1594-
* @returns ndarray data type
1595-
*
1596-
* @example
1597-
* var dt = ns.minUnsignedIntegerDataType( 1280 );
1598-
* // returns 'uint16'
1599-
*
1600-
* @example
1601-
* var dt = ns.minUnsignedIntegerDataType( 3 );
1602-
* // returns 'uint8'
1603-
*/
1604-
minUnsignedIntegerDataType: typeof minUnsignedIntegerDataType;
1605-
16061487
/**
16071488
* Computes the minimum linear index in an underlying data buffer accessible to an array view.
16081489
*
@@ -2837,42 +2718,6 @@ interface Namespace {
28372718
*/
28382719
ndarray2array: typeof ndarray2array;
28392720

2840-
/**
2841-
* Returns a new ndarray where the order of elements of an input ndarray is reversed along each dimension.
2842-
*
2843-
* @param x - input array
2844-
* @returns output array
2845-
*
2846-
* @example
2847-
* var typedarray = require( '@stdlib/array/typed' );
2848-
* var ndarray = require( './../../../ctor' );
2849-
* var ndarray2array = require( './../../../to-array' );
2850-
*
2851-
* var buffer = typedarray( [ 1.0, 2.0, 3.0, 4.0, 5.0, 6.0 ], 'float64' );
2852-
* var shape = [ 3, 2 ];
2853-
* var strides = [ 2, 1 ];
2854-
* var offset = 0;
2855-
*
2856-
* var x = ndarray( 'float64', buffer, shape, strides, offset, 'row-major' );
2857-
* // returns <ndarray>
2858-
*
2859-
* var sh = x.shape;
2860-
* // returns [ 3, 2 ]
2861-
*
2862-
* var arr = ndarray2array( x );
2863-
* // returns [ [ 1.0, 2.0 ], [ 3.0, 4.0 ], [ 5.0, 6.0 ] ]
2864-
*
2865-
* var y = ns.toReversed( x );
2866-
* // returns <ndarray>
2867-
*
2868-
* sh = y.shape;
2869-
* // returns [ 3, 2 ]
2870-
*
2871-
* arr = ndarray2array( y );
2872-
* // returns [ [ 6.0, 5.0 ], [ 4.0, 3.0 ], [ 2.0, 1.0 ] ]
2873-
*/
2874-
toReversed: typeof toReversed;
2875-
28762721
/**
28772722
* Transposes a matrix (or a stack of matrices).
28782723
*

0 commit comments

Comments
 (0)