File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
lib/node_modules/@stdlib/ndarray/base/fill-by Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -132,6 +132,12 @@ A provided ndarray should be an object with the following properties:
132
132
- ** offset** : index offset.
133
133
- ** order** : specifies whether an ndarray is row-major (C-style) or column major (Fortran-style).
134
134
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
+
135
141
</section >
136
142
137
143
<!-- /.usage -->
Original file line number Diff line number Diff line change 8
8
buffer has one, and only one, corresponding element in input ndarray view
9
9
(i.e., a provided ndarray is not a broadcasted ndarray view).
10
10
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
+
11
17
Parameters
12
18
----------
13
19
x: ndarrayLike
You can’t perform that action at this time.
0 commit comments