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 333b20c commit 37270f0Copy full SHA for 37270f0
runtime/Belt_Array.resi
@@ -14,15 +14,6 @@
14
15
/***
16
Utilities for `Array` functions.
17
-
18
-### Note about index syntax
19
20
-Code like `arr[0]` does *not* compile to JavaScript `arr[0]`. Reason transforms
21
-the `[]` index syntax into a function: `Array.get(arr, 0)`. By default, this
22
-uses the default standard library's `Array.get` function, which may raise an
23
-exception if the index isn't found. If you `open Belt`, it will use the
24
-`Belt.Array.get` function which returns options instead of raising exceptions.
25
-[See this for more information](../belt.mdx#array-access-runtime-safety).
26
*/
27
28
type t<'a> = array<'a>
0 commit comments