Skip to content

Commit 0281681

Browse files
committed
Update namespace
1 parent 56c1910 commit 0281681

3 files changed

Lines changed: 19 additions & 7 deletions

File tree

  • lib/node_modules/@stdlib

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4301,6 +4301,16 @@ ns.push({
43014301
]
43024302
});
43034303

4304+
ns.push({
4305+
'alias': 'iterHannPulse',
4306+
'path': '@stdlib/simulate/iter/hann-pulse',
4307+
'value': require( '@stdlib/simulate/iter/hann-pulse' ),
4308+
'type': 'Function',
4309+
'related': [
4310+
'@stdlib/simulate/iter/sine-wave'
4311+
]
4312+
});
4313+
43044314
ns.push({
43054315
'alias': 'iterHead',
43064316
'path': '@stdlib/iter/head',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1409,6 +1409,7 @@ var db = {
14091409
"iterFirst": "arr = array2iterator( [ 1, 0, 0, 0, 0 ] );\nv = iterFirst( arr )\n",
14101410
"iterFlow": "o = {};\no.head = iterHead;\no.some = iterSome;\nfiter = iterFlow( o )\n",
14111411
"iterForEach": "function f( v ) { if ( v !== v ) { throw new Error( 'beep' ); } };\nit = iterForEach( random.iterators.randu(), f );\nr = it.next().value\nr = it.next().value\n",
1412+
"iterHannPulse": "it = iterHannPulse();\nv = it.next().value\nv = it.next().value\n",
14121413
"iterHead": "it = iterHead( random.iterators.randu(), 5 );\nr = it.next().value\nr = it.next().value\n",
14131414
"iterIntersection": "it1 = array2iterator( [ 1, 2, 1, 2, 4 ] );\nit2 = array2iterator( [ 1, 2, 5, 2, 3 ] );\nit = iterIntersection( it1, it2 );\nv = it.next().value\nv = it.next().value\nbool = it.next().done\n",
14141415
"iterIntersectionByHash": "it1 = array2iterator( [ 1, 2, 1, 2, 4 ] );\nit2 = array2iterator( [ 1, 2, 5, 2, 3 ] );\nfunction f( v ) { return v.toString(); };\nit = iterIntersectionByHash( it1, it2, f );\nv = it.next().value\nv = it.next().value\nbool = it.next().done\n",

0 commit comments

Comments
 (0)