We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a29deb6 commit 80bb0b8Copy full SHA for 80bb0b8
src/stdlib/typedarray.md
@@ -145,6 +145,11 @@ The TypedArray API works very much like JavaScript's \([MDN](https://developer.m
145
```
146
Reverses an array's values in place, modifying the array before returning it.
147
148
+* ```ts
149
+ function set(source: TypedArray, offset?: i32): void
150
+ ```
151
+ Sets the typed array values (starting at `offset`, or 0), reading input values from a specified `source` typed array.
152
+
153
* ```ts
154
function some(
155
fn: (value: T, index: i32, self: TypedArray) => bool
0 commit comments