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 c35a641 commit 2f44bb4Copy full SHA for 2f44bb4
runtime/Stdlib_Array.resi
@@ -11,9 +11,7 @@ type t<'a> = array<'a>
11
type arrayLike<'a>
12
13
/**
14
-`fromIterator(iterator)`
15
-
16
-Creates an array from the provided `iterator`
+`fromIterator(iterator)` creates an array from the provided `iterator`
17
18
## Examples
19
@@ -35,9 +33,7 @@ external fromIterator: Stdlib_Iterator.t<'a> => array<'a> = "Array.from"
35
33
external fromArrayLikeWithMap: (arrayLike<'a>, 'a => 'b) => array<'b> = "Array.from"
36
34
37
38
-`make(~length, init)`
39
40
-Creates an array of length `length` initialized with the value of `init`.
+`make(~length, init)` creates an array of length `length` initialized with the value of `init`.
41
42
43
0 commit comments