Skip to content

Commit c67eb9f

Browse files
committed
docs: update copy
--- 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: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: na - 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 417fdb8 commit c67eb9f

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

lib/node_modules/@stdlib/ndarray/base/fill-by/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,12 @@ A provided ndarray should be an object with the following properties:
132132
- **offset**: index offset.
133133
- **order**: specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
134134

135+
The callback function is provided the following arguments:
136+
137+
- **value**: current array element.
138+
- **indices**: current array element indices.
139+
- **arr**: the input ndarray.
140+
135141
</section>
136142

137143
<!-- /.usage -->

lib/node_modules/@stdlib/ndarray/base/fill-by/docs/repl.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88
buffer has one, and only one, corresponding element in input ndarray view
99
(i.e., a provided ndarray is not a broadcasted ndarray view).
1010

11+
The callback function is provided the following arguments:
12+
13+
- value: current array element.
14+
- indices: current array element indices.
15+
- arr: the input ndarray.
16+
1117
Parameters
1218
----------
1319
x: ndarrayLike

0 commit comments

Comments
 (0)