Skip to content

Commit c181034

Browse files
committed
Update namespace
1 parent 4ea4e46 commit c181034

File tree

3 files changed

+46
-34
lines changed
  • lib/node_modules/@stdlib

3 files changed

+46
-34
lines changed

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,16 @@ ns.push({
200200
]
201201
});
202202

203+
ns.push({
204+
'alias': 'arrayDtypes',
205+
'path': '@stdlib/types/array/dtypes',
206+
'value': require( '@stdlib/types/array/dtypes' ),
207+
'type': 'Function',
208+
'related': [
209+
'@stdlib/types/ndarray/dtypes'
210+
]
211+
});
212+
203213
ns.push({
204214
'alias': 'array2buffer',
205215
'path': '@stdlib/types/buffer/from-array',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ module.exports = {
1919
"ARGV": "execPath = ARGV[ 0 ]\n",
2020
"ArrayBuffer": "buf = new ArrayBuffer( 5 )\n",
2121
"arraybuffer2buffer": "ab = new ArrayBuffer( 10 )\nbuf = arraybuffer2buffer( ab )\nlen = buf.length\nbuf = arraybuffer2buffer( ab, 2, 6 )\nlen = buf.length\n",
22+
"arrayDtypes": "out = arrayDtypes()\n",
2223
"array2buffer": "buf = array2buffer( [ 1, 2, 3, 4 ] )\n",
2324
"base.abs": "y = base.abs( -1.0 )\ny = base.abs( 2.0 )\ny = base.abs( 0.0 )\ny = base.abs( -0.0 )\ny = base.abs( NaN )\n",
2425
"base.abs2": "y = base.abs2( -1.0 )\ny = base.abs2( 2.0 )\ny = base.abs2( 0.0 )\ny = base.abs2( -0.0 )\ny = base.abs2( NaN )\n",

0 commit comments

Comments
 (0)