Skip to content

Commit f87a11e

Browse files
kgryteGirish-Garg
authored andcommitted
feat: add ndfill to namespace
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 216b43a commit f87a11e

File tree

19 files changed

+31
-9
lines changed

19 files changed

+31
-9
lines changed

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,7 @@ ndarrayStrides,"@stdlib/ndarray/strides"
25932593
ndat,"@stdlib/ndarray/at"
25942594
ndempty,"@stdlib/ndarray/empty"
25952595
ndemptyLike,"@stdlib/ndarray/empty-like"
2596+
ndfill,"@stdlib/ndarray/fill"
25962597
ndfilter,"@stdlib/ndarray/filter"
25972598
ndfilterMap,"@stdlib/ndarray/filter-map"
25982599
ndforEach,"@stdlib/ndarray/for-each"

lib/node_modules/@stdlib/namespace/alias2pkg/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2related/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,7 @@ ndarrayStrides,"array,ndarray,ndarrayOffset,ndarrayOrder,ndarrayShape"
25932593
ndat,"array,ndslice"
25942594
ndempty,"ndemptyLike,ndzeros"
25952595
ndemptyLike,"ndempty,ndzerosLike"
2596+
ndfill,"ndmap,ndzeros"
25962597
ndfilter,"ndfilterMap,ndmap,ndreject,ndslice"
25972598
ndfilterMap,"ndfilter,ndmap,ndreject,ndslice"
25982599
ndforEach,"ndmap"

lib/node_modules/@stdlib/namespace/alias2related/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,7 @@ ndarrayStrides,"@stdlib/ndarray-strides"
25932593
ndat,"@stdlib/ndarray-at"
25942594
ndempty,"@stdlib/ndarray-empty"
25952595
ndemptyLike,"@stdlib/ndarray-empty-like"
2596+
ndfill,"@stdlib/ndarray-fill"
25962597
ndfilter,"@stdlib/ndarray-filter"
25972598
ndfilterMap,"@stdlib/ndarray-filter-map"
25982599
ndforEach,"@stdlib/ndarray-for-each"

lib/node_modules/@stdlib/namespace/alias2standalone/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

lib/node_modules/@stdlib/namespace/aliases/data/data.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,7 @@ ndarrayStrides
25932593
ndat
25942594
ndempty
25952595
ndemptyLike
2596+
ndfill
25962597
ndfilter
25972598
ndfilterMap
25982599
ndforEach

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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -417,6 +417,19 @@ ns.push({
417417
]
418418
});
419419

420+
ns.push({
421+
'alias': 'ndfill',
422+
'path': '@stdlib/ndarray/fill',
423+
'value': require( '@stdlib/ndarray/fill' ),
424+
'type': 'Function',
425+
'related': [
426+
'@stdlib/ndarray/full',
427+
'@stdlib/ndarray/map',
428+
'@stdlib/ndarray/ones',
429+
'@stdlib/ndarray/zeros'
430+
]
431+
});
432+
420433
ns.push({
421434
'alias': 'ndfilter',
422435
'path': '@stdlib/ndarray/filter',

lib/node_modules/@stdlib/namespace/pkg2alias/data/data.csv

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,7 @@
25932593
"@stdlib/ndarray/at",ndat
25942594
"@stdlib/ndarray/empty",ndempty
25952595
"@stdlib/ndarray/empty-like",ndemptyLike
2596+
"@stdlib/ndarray/fill",ndfill
25962597
"@stdlib/ndarray/filter",ndfilter
25972598
"@stdlib/ndarray/filter-map",ndfilterMap
25982599
"@stdlib/ndarray/for-each",ndforEach

0 commit comments

Comments
 (0)