Skip to content

Commit 27ace7d

Browse files
committed
feat: add ndfillBy 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 108156b commit 27ace7d

File tree

20 files changed

+36
-12
lines changed

20 files changed

+36
-12
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
@@ -2594,6 +2594,7 @@ ndat,"@stdlib/ndarray/at"
25942594
ndempty,"@stdlib/ndarray/empty"
25952595
ndemptyLike,"@stdlib/ndarray/empty-like"
25962596
ndfill,"@stdlib/ndarray/fill"
2597+
ndfillBy,"@stdlib/ndarray/fill-by"
25972598
ndfilter,"@stdlib/ndarray/filter"
25982599
ndfilterMap,"@stdlib/ndarray/filter-map"
25992600
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2593,7 +2593,8 @@ ndarrayStrides,"array,ndarray,ndarrayOffset,ndarrayOrder,ndarrayShape"
25932593
ndat,"array,ndslice"
25942594
ndempty,"ndemptyLike,ndzeros"
25952595
ndemptyLike,"ndempty,ndzerosLike"
2596-
ndfill,"ndmap,ndzeros"
2596+
ndfill,"ndfillBy,ndmap,ndzeros"
2597+
ndfillBy,"ndfill,ndmap,ndzeros"
25972598
ndfilter,"ndfilterMap,ndmap,ndreject,ndslice"
25982599
ndfilterMap,"ndfilter,ndmap,ndreject,ndslice"
25992600
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
@@ -2594,6 +2594,7 @@ ndat,"@stdlib/ndarray-at"
25942594
ndempty,"@stdlib/ndarray-empty"
25952595
ndemptyLike,"@stdlib/ndarray-empty-like"
25962596
ndfill,"@stdlib/ndarray-fill"
2597+
ndfillBy,"@stdlib/ndarray-fill-by"
25972598
ndfilter,"@stdlib/ndarray-filter"
25982599
ndfilterMap,"@stdlib/ndarray-filter-map"
25992600
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
@@ -2594,6 +2594,7 @@ ndat
25942594
ndempty
25952595
ndemptyLike
25962596
ndfill
2597+
ndfillBy
25972598
ndfilter
25982599
ndfilterMap
25992600
ndforEach

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,21 @@ ns.push({
423423
'value': require( '@stdlib/ndarray/fill' ),
424424
'type': 'Function',
425425
'related': [
426+
'@stdlib/ndarray/fill-by',
427+
'@stdlib/ndarray/full',
428+
'@stdlib/ndarray/map',
429+
'@stdlib/ndarray/ones',
430+
'@stdlib/ndarray/zeros'
431+
]
432+
});
433+
434+
ns.push({
435+
'alias': 'ndfillBy',
436+
'path': '@stdlib/ndarray/fill-by',
437+
'value': require( '@stdlib/ndarray/fill-by' ),
438+
'type': 'Function',
439+
'related': [
440+
'@stdlib/ndarray/fill',
426441
'@stdlib/ndarray/full',
427442
'@stdlib/ndarray/map',
428443
'@stdlib/ndarray/ones',

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2594,6 +2594,7 @@
25942594
"@stdlib/ndarray/empty",ndempty
25952595
"@stdlib/ndarray/empty-like",ndemptyLike
25962596
"@stdlib/ndarray/fill",ndfill
2597+
"@stdlib/ndarray/fill-by",ndfillBy
25972598
"@stdlib/ndarray/filter",ndfilter
25982599
"@stdlib/ndarray/filter-map",ndfilterMap
25992600
"@stdlib/ndarray/for-each",ndforEach

0 commit comments

Comments
 (0)