Skip to content

Commit a9d52b2

Browse files
committed
Update namespace
1 parent 07e37ea commit a9d52b2

File tree

3 files changed

+17
-2
lines changed
  • lib/node_modules/@stdlib

3 files changed

+17
-2
lines changed

lib/node_modules/@stdlib/namespace/lib/namespace/i.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4220,6 +4220,19 @@ ns.push({
42204220
]
42214221
});
42224222

4223+
ns.push({
4224+
'alias': 'itermsumabs2',
4225+
'path': '@stdlib/stats/iter/msumabs2',
4226+
'value': require( '@stdlib/stats/iter/msumabs2' ),
4227+
'type': 'Function',
4228+
'related': [
4229+
'@stdlib/stats/iter/mmeanabs2',
4230+
'@stdlib/stats/iter/msumabs',
4231+
'@stdlib/stats/iter/sumabs',
4232+
'@stdlib/stats/iter/sumabs2'
4233+
]
4234+
});
4235+
42234236
ns.push({
42244237
'alias': 'iterNone',
42254238
'path': '@stdlib/iter/none',

lib/node_modules/@stdlib/repl/code-blocks/lib/db.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1396,6 +1396,7 @@ var db = {
13961396
"itermrange": "arr = array2iterator( [ 2.0, -5.0, 3.0, 5.0 ] );\nit = itermrange( arr, 3 );\nm = it.next().value\nm = it.next().value\nm = it.next().value\nm = it.next().value\n",
13971397
"itermsum": "arr = array2iterator( [ 2.0, -5.0, 3.0, 5.0 ] );\nit = itermsum( arr, 3 );\ns = it.next().value\ns = it.next().value\ns = it.next().value\ns = it.next().value\n",
13981398
"itermsumabs": "arr = array2iterator( [ 2.0, -5.0, 3.0, 5.0 ] );\nit = itermsumabs( arr, 3 );\ns = it.next().value\ns = it.next().value\ns = it.next().value\ns = it.next().value\n",
1399+
"itermsumabs2": "arr = array2iterator( [ 2.0, -5.0, 3.0, 5.0 ] );\nit = itermsumabs2( arr, 3 );\ns = it.next().value\ns = it.next().value\ns = it.next().value\ns = it.next().value\n",
13991400
"iterNone": "arr = array2iterator( [ 0, 0, 0, 0, 1 ] );\nbool = iterNone( arr )\n",
14001401
"iterNoneBy": "arr = array2iterator( [ 1, 1, 1, 1, 1 ] );\nfunction fcn( v ) { return ( v <= 0 ); };\nbool = iterNoneBy( arr, fcn )\n",
14011402
"iterNth": "arr = array2iterator( [ 0, 0, 1, 0, 0 ] );\nv = iterNth( arr, 3 )\n",

0 commit comments

Comments
 (0)