forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_list.mli
233 lines (164 loc) · 6.88 KB
/
ext_list.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
(* Copyright (C) 2015-2016 Bloomberg Finance L.P.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* In addition to the permissions granted to you by the LGPL, you may combine
* or link a "work that uses the Library" with a publicly distributed version
* of this file to produce a combined library or application, then distribute
* that combined work under the terms of your choosing, with no requirement
* to comply with the obligations normally placed on you by section 4 of the
* LGPL version 3 (or the corresponding section of a later version of the LGPL
* should you choose to use a later version).
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *)
val map : 'a list -> ('a -> 'b) -> 'b list
val map_combine : 'a list -> 'b list -> ('a -> 'c) -> ('c * 'b) list
val combine_array : 'a array -> 'b list -> ('a -> 'c) -> ('c * 'b) list
val combine_array_append :
'a array -> 'b list -> ('c * 'b) list -> ('a -> 'c) -> ('c * 'b) list
val has_string : string list -> string -> bool
val map_split_opt :
'a list -> ('a -> 'b option * 'c option) -> 'b list * 'c list
val mapi : 'a list -> (int -> 'a -> 'b) -> 'b list
val mapi_append : 'a list -> (int -> 'a -> 'b) -> 'b list -> 'b list
val map_snd : ('a * 'b) list -> ('b -> 'c) -> ('a * 'c) list
val map_last : 'a list -> (bool -> 'a -> 'b) -> 'b list
(** [map_last f xs ]
will pass [true] to [f] for the last element,
[false] otherwise.
For empty list, it returns empty
*)
val last : 'a list -> 'a
(** [last l]
return the last element
raise if the list is empty
*)
val append : 'a list -> 'a list -> 'a list
val append_one : 'a list -> 'a -> 'a list
val map_append : 'b list -> 'a list -> ('b -> 'a) -> 'a list
val fold_right : 'a list -> 'b -> ('a -> 'b -> 'b) -> 'b
val fold_right2 : 'a list -> 'b list -> 'c -> ('a -> 'b -> 'c -> 'c) -> 'c
val fold_right3 :
'a list -> 'b list -> 'c list -> 'd -> ('a -> 'b -> 'c -> 'd -> 'd) -> 'd
val map2 : 'a list -> 'b list -> ('a -> 'b -> 'c) -> 'c list
val map2i : 'a list -> 'b list -> (int -> 'a -> 'b -> 'c) -> 'c list
val fold_left_with_offset :
'a list -> 'acc -> int -> ('a -> 'acc -> int -> 'acc) -> 'acc
val filter_map : 'a list -> ('a -> 'b option) -> 'b list
(** @unused *)
val exclude : 'a list -> ('a -> bool) -> 'a list
(** [exclude p l] is the opposite of [filter p l] *)
val exclude_with_val : 'a list -> ('a -> bool) -> 'a list option
(** [excludes p l]
return a tuple [excluded,newl]
where [exluded] is true indicates that at least one
element is removed,[newl] is the new list where all [p x] for [x] is false
*)
val same_length : 'a list -> 'b list -> bool
val init : int -> (int -> 'a) -> 'a list
val split_at : 'a list -> int -> 'a list * 'a list
(** [split_at n l]
will split [l] into two lists [a,b], [a] will be of length [n],
otherwise, it will raise
*)
val split_at_last : 'a list -> 'a list * 'a
(** [split_at_last l]
It is equivalent to [split_at (List.length l - 1) l ]
*)
val filter_mapi : 'a list -> ('a -> int -> 'b option) -> 'b list
val filter_map2 : 'a list -> 'b list -> ('a -> 'b -> 'c option) -> 'c list
val length_compare : 'a list -> int -> [ `Gt | `Eq | `Lt ]
val length_ge : 'a list -> int -> bool
(**
{[length xs = length ys + n ]}
input n should be positive
TODO: input checking
*)
val length_larger_than_n : 'a list -> 'a list -> int -> bool
val rev_map_append : 'a list -> 'b list -> ('a -> 'b) -> 'b list
(**
[rev_map_append f l1 l2]
[map f l1] and reverse it to append [l2]
This weird semantics is due to it is the most efficient operation
we can do
*)
val flat_map : 'a list -> ('a -> 'b list) -> 'b list
val flat_map_append : 'a list -> 'b list -> ('a -> 'b list) -> 'b list
val stable_group : 'a list -> ('a -> 'a -> bool) -> 'a list list
(**
[stable_group eq lst]
Example:
Input:
{[
stable_group (=) [1;2;3;4;3]
]}
Output:
{[
[[1];[2];[4];[3;3]]
]}
TODO: this is O(n^2) behavior
which could be improved later
*)
val drop : 'a list -> int -> 'a list
(** [drop n list]
raise when [n] is negative
raise when list's length is less than [n]
*)
val find_first : 'a list -> ('a -> bool) -> 'a option
val find_first_not : 'a list -> ('a -> bool) -> 'a option
(** [find_first_not p lst ]
if all elements in [lst] pass, return [None]
otherwise return the first element [e] as [Some e] which
fails the predicate
*)
(** [find_opt f l] returns [None] if all return [None],
otherwise returns the first one.
*)
val find_opt : 'a list -> ('a -> 'b option) -> 'b option
val find_def : 'a list -> ('a -> 'b option) -> 'b -> 'b
val rev_iter : 'a list -> ('a -> unit) -> unit
val iter : 'a list -> ('a -> unit) -> unit
val for_all : 'a list -> ('a -> bool) -> bool
val for_all_snd : ('a * 'b) list -> ('b -> bool) -> bool
val for_all2_no_exn : 'a list -> 'b list -> ('a -> 'b -> bool) -> bool
(** [for_all2_no_exn p xs ys]
return [true] if all satisfied,
[false] otherwise or length not equal
*)
val split_map : 'a list -> ('a -> 'b * 'c) -> 'b list * 'c list
(** [f] is applied follow the list order *)
val reduce_from_left : 'a list -> ('a -> 'a -> 'a) -> 'a
(** [fn] is applied from left to right *)
val sort_via_array : 'a list -> ('a -> 'a -> int) -> 'a list
val sort_via_arrayf : 'a list -> ('a -> 'a -> int) -> ('a -> 'b) -> 'b list
val assoc_by_string : (string * 'a) list -> string -> 'a option -> 'a
(** [assoc_by_string default key lst]
if [key] is found in the list return that val,
other unbox the [default],
otherwise [assert false ]
*)
val assoc_by_int : (int * 'a) list -> int -> 'a option -> 'a
val nth_opt : 'a list -> int -> 'a option
val iter_snd : ('a * 'b) list -> ('b -> unit) -> unit
val iter_fst : ('a * 'b) list -> ('a -> unit) -> unit
val exists : 'a list -> ('a -> bool) -> bool
val exists_fst : ('a * 'b) list -> ('a -> bool) -> bool
val exists_snd : ('a * 'b) list -> ('b -> bool) -> bool
val concat_append : 'a list list -> 'a list -> 'a list
val fold_left2 : 'a list -> 'b list -> 'c -> ('a -> 'b -> 'c -> 'c) -> 'c
val fold_left : 'a list -> 'b -> ('b -> 'a -> 'b) -> 'b
val singleton_exn : 'a list -> 'a
val mem_string : string list -> string -> bool
val filter : 'a list -> ('a -> bool) -> 'a list
val array_list_filter_map :
'a array -> 'b list -> ('a -> 'b -> 'c option) -> 'c list