Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove non-existant MDN links
  • Loading branch information
fhammerschmidt committed Oct 23, 2025
commit 4e22a3717c72891abc89f72004cdaa6b933f559c
4 changes: 0 additions & 4 deletions packages/@rescript/runtime/Stdlib_TypedArray.res
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ type t<'a>
`get(typedArray, index)` returns the element at `index` of `typedArray`.
Returns `None` if the index does not exist in the typed array. Equivalent to doing `typedArray[index]` in JavaScript.

See [`TypedArray.prototype.at`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/at) on MDN.

## Examples

```rescript
Expand All @@ -23,8 +21,6 @@ external get: (t<'a>, int) => option<'a> = ""

Beware this will *mutate* the array.

See [`TypedArray.prototype.set`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set) on MDN.

## Examples

```rescript
Expand Down
Loading
Loading