|
1 | 1 | (* Copyright (C) 2015-2016 Bloomberg Finance L.P.
|
2 |
| - * |
| 2 | + * |
3 | 3 | * This program is free software: you can redistribute it and/or modify
|
4 | 4 | * it under the terms of the GNU Lesser General Public License as published by
|
5 | 5 | * the Free Software Foundation, either version 3 of the License, or
|
|
17 | 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
18 | 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
19 | 19 | * GNU Lesser General Public License for more details.
|
20 |
| - * |
| 20 | + * |
21 | 21 | * You should have received a copy of the GNU Lesser General Public License
|
22 | 22 | * along with this program; if not, write to the Free Software
|
23 | 23 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
|
24 | 24 |
|
25 |
| - |
26 | 25 | type 'a t = 'a array
|
| 26 | +type 'a array_like |
| 27 | +type 'a array_iter = 'a array_like (* don't think this is very useful to implement wihtout language support *) |
| 28 | + |
| 29 | +external make : int -> unit Js.undefined array = "Array" [@@bs.new] |
| 30 | + |
| 31 | +external from : 'a array_like -> 'b array = "Array.from" [@@bs.val] (* es2015 *) |
| 32 | +external unsafeFrom : 'a -> 'b array = "Array.from" [@@bs.val] (* es2015 *) |
| 33 | +external fromMap : 'a array_like -> ('a -> 'b [@bs]) -> 'b array = "Array.from" [@@bs.val] (* es2015 *) |
| 34 | +external unsafeFromMap : 'a -> ('b -> 'c [@bs]) -> 'c array = "Array.from" [@@bs.val] (* es2015 *) |
| 35 | +external isArray : 'a -> Js.boolean = "Array.isArray" [@@bs.val] (* es2015 *) |
| 36 | +(* Array.of: seems pointless unless you can bind *) (* es2015 *) |
| 37 | + |
| 38 | +external length : 'a array -> int = "" [@@bs.get] |
| 39 | + |
| 40 | + |
| 41 | +(* Mutator functions |
| 42 | +*) |
| 43 | +external copyWithin : to_:int -> 'this = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 44 | +external copyWithinFrom : to_:int -> from:int -> 'this = "copyWithin" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 45 | +external copyWithinFromRange : to_:int -> start:int -> end_:int -> 'this = "copyWithin" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 46 | + |
| 47 | +external fill : 'a -> 'this = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 48 | +external fillFrom : 'a -> from:int -> 'this = "fill" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 49 | +external fillRange : 'a -> start:int -> end_:int -> 'this = "fill" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
27 | 50 |
|
28 |
| -external toString : unit -> string = "" [@@bs.send.pipe: 'a t as 'this] |
29 |
| -external toLocaleString : unit -> string = "" [@@bs.send.pipe: 'a t as 'this] |
30 |
| -external concat : 'this -> 'this = "" [@@bs.send.pipe: 'a t as 'this] |
| 51 | +(** https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push *) |
| 52 | +external pop : 'a Js.undefined = "" [@@bs.send.pipe: 'a t as 'this] |
| 53 | +external push : 'a -> int = "" [@@bs.send.pipe: 'a t as 'this] |
| 54 | +external pushMany : 'a array -> int = "push" [@@bs.send.pipe: 'a t as 'this] [@@bs.splice] |
| 55 | + |
| 56 | +external reverse : 'this = "" [@@bs.send.pipe: 'a t as 'this] |
| 57 | + |
| 58 | +external shift : 'a Js.undefined = "" [@@bs.send.pipe: 'a t as 'this] |
| 59 | + |
| 60 | +external sort : 'this = "" [@@bs.send.pipe: 'a t as 'this] |
| 61 | +external sortWith : ('a -> 'a -> int [@bs]) -> 'this = "sort" [@@bs.send.pipe: 'a t as 'this] |
| 62 | + |
| 63 | +external splice : pos:int -> remove:int -> add:('a array) -> 'this = "" [@@bs.send.pipe: 'a t as 'this] [@@bs.splice] |
| 64 | +external removeFrom : pos:int -> 'this = "splice" [@@bs.send.pipe: 'a t as 'this] |
| 65 | +external removeCount : pos:int -> count:int -> 'this = "splice" [@@bs.send.pipe: 'a t as 'this] |
| 66 | +(* screwy naming, but screwy function *) |
| 67 | + |
| 68 | +external unshift : 'a -> int = "" [@@bs.send.pipe: 'a t as 'this] |
| 69 | +external unshiftMany : 'a array -> int = "unshift" [@@bs.send.pipe: 'a t as 'this] [@@bs.splice] |
| 70 | + |
| 71 | + |
| 72 | +(* Accessor functions |
| 73 | +*) |
31 | 74 | external append : 'a -> 'this = "concat" [@@bs.send.pipe: 'a t as 'this]
|
| 75 | +external concat : 'this -> 'this = "" [@@bs.send.pipe: 'a t as 'this] |
| 76 | +external concatMany : 'this array -> 'this = "concat" [@@bs.send.pipe: 'a t as 'this] [@@bs.splice] |
32 | 77 |
|
33 |
| -external slice : int -> int -> 'this = "" [@@bs.send.pipe: 'a t as 'this] |
34 |
| -external slice_copy : unit -> 'this = "slice"[@@bs.send.pipe: 'a t as 'this] |
35 |
| -external slice_start : int -> 'this = "slice"[@@bs.send.pipe: 'a t as 'this] |
| 78 | +(* TODO: Not available in Node V4 *) |
| 79 | +external includes : 'a -> Js.boolean = "" [@@bs.send.pipe: 'a t as 'this] (* es2016 *) |
36 | 80 |
|
37 | 81 | external indexOf : 'a -> int = "" [@@bs.send.pipe: 'a t as 'this]
|
38 |
| -external indexOfFrom : 'a -> int -> int = "indexOf" [@@bs.send.pipe: 'a t as 'this] |
| 82 | +external indexOfFrom : 'a -> from:int -> int = "indexOf" [@@bs.send.pipe: 'a t as 'this] |
39 | 83 |
|
40 |
| -(* TODO: Not available in Node V4 *) |
41 |
| -external includes : 'a -> Js.boolean = "" [@@bs.send.pipe: 'a t as 'this] |
| 84 | +external join : string = "" [@@bs.send.pipe: 'a t as 'this] |
| 85 | +external joinWith : string -> string = "join" [@@bs.send.pipe: 'a t as 'this] |
| 86 | + |
| 87 | +external lastIndexOf : 'a -> int = "" [@@bs.send.pipe: 'a t as 'this] |
| 88 | +external lastIndexOfFrom : 'a -> from:int -> int = "lastIndexOf" [@@bs.send.pipe: 'a t as 'this] |
| 89 | +external lastIndexOf_start : 'a -> int = "lastIndexOf" [@@bs.send.pipe: 'a t as 'this] |
| 90 | +[@@ocaml.deprecated "Please use `lastIndexOf"] |
| 91 | + |
| 92 | +external slice : start:int -> end_:int -> 'this = "" [@@bs.send.pipe: 'a t as 'this] |
| 93 | +external copy : 'this = "slice" [@@bs.send.pipe: 'a t as 'this] |
| 94 | +external slice_copy : unit -> 'this = "slice" [@@bs.send.pipe: 'a t as 'this] |
| 95 | +[@@ocaml.deprecated "Please use `copy`"] |
| 96 | +external sliceFrom : int -> 'this = "slice" [@@bs.send.pipe: 'a t as 'this] |
| 97 | +external slice_start : int -> 'this = "slice" [@@bs.send.pipe: 'a t as 'this] |
| 98 | +[@@ocaml.deprecated "Please use `sliceFrom`"] |
| 99 | + |
| 100 | +external toString : string = "" [@@bs.send.pipe: 'a t as 'this] |
| 101 | +external toLocaleString : string = "" [@@bs.send.pipe: 'a t as 'this] |
42 | 102 |
|
43 |
| -external lastIndexOf : 'a -> int -> int = "" [@@bs.send.pipe: 'a t as 'this] |
44 |
| -external lastIndexOf_start : 'a -> int = "lastIndex" [@@bs.send.pipe: 'a t as 'this] |
| 103 | + |
| 104 | +(* Iteration functions |
| 105 | +*) |
| 106 | +external entries : (int * 'a) array_iter = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
45 | 107 |
|
46 | 108 | external every : ('a -> Js.boolean [@bs]) -> Js.boolean = "" [@@bs.send.pipe: 'a t as 'this]
|
47 | 109 | external everyi : ('a -> int -> Js.boolean [@bs]) -> Js.boolean = "every" [@@bs.send.pipe: 'a t as 'this]
|
48 | 110 |
|
49 |
| -external some : ('a -> Js.boolean [@bs]) -> Js.boolean = "" [@@bs.send.pipe: 'a t as 'this] |
50 |
| -external somei : ('a -> int -> Js.boolean [@bs]) -> Js.boolean = "some" [@@bs.send.pipe: 'a t as 'this] |
| 111 | +(** should we use [bool] or [boolan] seems they are intechangeable here *) |
| 112 | +external filter : ('a -> bool [@bs]) -> 'this = "" [@@bs.send.pipe: 'a t as 'this] |
| 113 | +external filteri : ('a -> int -> Js.boolean[@bs]) -> 'this = "filter" [@@bs.send.pipe: 'a t as 'this] |
| 114 | + |
| 115 | +external find : ('a -> bool [@bs]) -> 'a Js.undefined = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 116 | +external findi : ('a -> int -> bool [@bs]) -> 'a Js.undefined = "find" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
51 | 117 |
|
| 118 | +external findIndex : ('a -> bool [@bs]) -> int = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
| 119 | +external findIndexi : ('a -> int -> bool [@bs]) -> int = "findIndex" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
52 | 120 |
|
53 |
| -external forEach : ('a -> unit [@bs]) -> unit = "" [@@bs.send.pipe: 'a t as 'this] |
| 121 | +external forEach : ('a -> unit [@bs]) -> unit = "" [@@bs.send.pipe: 'a t as 'this] |
54 | 122 | external forEachi : ('a -> int -> unit [@bs]) -> unit = "forEach" [@@bs.send.pipe: 'a t as 'this]
|
55 | 123 |
|
56 |
| -external map : ('a -> 'b [@bs]) -> 'b t = "" [@@bs.send.pipe: 'a t as 'this] |
57 |
| -external mapi : ('a -> int -> 'b [@bs]) -> 'b t = "map" [@@bs.send.pipe: 'a t as 'this] |
| 124 | +external keys : int array_iter = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
58 | 125 |
|
59 |
| -(** should we use [bool] or [boolan] seems they are intechangeable here *) |
60 |
| -external filter : ('a -> bool [@bs]) -> 'this = "" [@@bs.send.pipe: 'a t as 'this] |
61 |
| -external filteri : ('a -> int -> Js.boolean[@bs]) -> 'this = "filter" [@@bs.send.pipe: 'a t as 'this] |
| 126 | +external map : ('a -> 'b [@bs]) -> 'b t = "" [@@bs.send.pipe: 'a t as 'this] |
| 127 | +external mapi : ('a -> int -> 'b [@bs]) -> 'b t = "map" [@@bs.send.pipe: 'a t as 'this] |
62 | 128 |
|
63 |
| -external reducei : ('a -> 'a -> int -> 'a [@bs]) -> 'a -> 'a = "reduce" [@@bs.send.pipe: 'a t as 'this] |
64 |
| -external reduce : ('a -> 'a -> 'a [@bs]) -> 'a -> 'a = "reduce" [@@bs.send.pipe: 'a t as 'this] |
| 129 | +external reduce : ('b -> 'a -> 'b [@bs]) -> 'b -> 'b = "" [@@bs.send.pipe: 'a t as 'this] |
| 130 | +external reducei : ('b -> 'a -> int -> 'b [@bs]) -> 'b -> 'b = "reduce" [@@bs.send.pipe: 'a t as 'this] |
65 | 131 |
|
66 |
| -external isArray : 'a -> Js.boolean = "Array.isArray" [@@bs.val] |
| 132 | +external reduceRight : ('b -> 'a -> 'b [@bs]) -> 'b -> 'b = "" [@@bs.send.pipe: 'a t as 'this] |
| 133 | +external reduceRighti : ('b -> 'a -> int -> 'b [@bs]) -> 'b -> 'b = "reduceRight" [@@bs.send.pipe: 'a t as 'this] |
67 | 134 |
|
68 |
| -(** https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/push *) |
69 |
| -external push : 'a array -> 'a -> int = "" |
70 |
| -[@@bs.send] |
| 135 | +external some : ('a -> Js.boolean [@bs]) -> Js.boolean = "" [@@bs.send.pipe: 'a t as 'this] |
| 136 | +external somei : ('a -> int -> Js.boolean [@bs]) -> Js.boolean = "some" [@@bs.send.pipe: 'a t as 'this] |
71 | 137 |
|
72 |
| -external pop : 'a array -> 'a Js.undefined = "" |
73 |
| -[@@bs.send] |
74 |
| - |
75 |
| -external length : 'a array -> int = "" |
76 |
| -[@@bs.get] |
77 |
| - |
| 138 | +external values : 'a array_iter = "" [@@bs.send.pipe: 'a t as 'this] (* es2015 *) |
0 commit comments