Skip to content

Commit 1c6b0e1

Browse files
committed
Update types and descriptions
1 parent 92e8227 commit 1c6b0e1

File tree

1 file changed

+9
-8
lines changed
  • lib/node_modules/@stdlib/math/strided/special/abs/docs

1 file changed

+9
-8
lines changed

lib/node_modules/@stdlib/math/strided/special/abs/docs/repl.txt

+9-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
{{alias}}( N, dtypeX, x, strideX, dtypeY, y, strideY )
3-
Computes the absolute value for each element in `x` and assigns the results
4-
to elements in `y`.
3+
Computes the absolute value for each element in a strided array `x` and
4+
assigns the results to elements in a strided array `y`.
55

66
The `N` and `stride` parameters determine which elements in `x` and `y` are
77
accessed at runtime.
@@ -14,7 +14,7 @@
1414
N: integer
1515
Number of indexed elements.
1616

17-
dtypeX: string
17+
dtypeX: any
1818
Data type for `x`.
1919

2020
x: ArrayLikeObject
@@ -23,7 +23,7 @@
2323
strideX: integer
2424
Index increment for `x`.
2525

26-
dtypeY: string
26+
dtypeY: any
2727
Data type for `y`.
2828

2929
y: ArrayLikeObject
@@ -62,8 +62,9 @@
6262

6363

6464
{{alias}}.ndarray( N, dtypeX, x, strideX, offsetX, dtypeY, y, strideY, offsetY )
65-
Computes the absolute value for each element in `x` and assigns the results
66-
to elements in `y` using alternative indexing semantics.
65+
Computes the absolute value for each element in a strided array `x` and
66+
assigns the results to elements in a strided array `y` using alternative
67+
indexing semantics.
6768

6869
While typed array views mandate a view offset based on the underlying
6970
buffer, the `offsetX` and `offsetY` parameters support indexing semantics
@@ -74,7 +75,7 @@
7475
N: integer
7576
Number of indexed elements.
7677

77-
dtypeX: string
78+
dtypeX: any
7879
Data type for `x`.
7980

8081
x: ArrayLikeObject
@@ -86,7 +87,7 @@
8687
offsetX: integer
8788
Starting index for `x`.
8889

89-
dtypeY: string
90+
dtypeY: any
9091
Data type for `y`.
9192

9293
y: ArrayLikeObject

0 commit comments

Comments
 (0)