@@ -4007,13 +4007,13 @@ let rec iter x f = match x with
4007
4007
| Node(l, v, d, r, _) ->
4008
4008
iter l f; f v d; iter r f
4009
4009
4010
- let rec map f = function
4010
+ let rec map x f = match x with
4011
4011
Empty ->
4012
4012
Empty
4013
4013
| Node(l, v, d, r, h) ->
4014
- let l' = map f l in
4014
+ let l' = map l f in
4015
4015
let d' = f d in
4016
- let r' = map f r in
4016
+ let r' = map r f in
4017
4017
Node(l', v, d', r', h)
4018
4018
4019
4019
let rec mapi x f = match x with
@@ -4025,19 +4025,19 @@ let rec mapi x f = match x with
4025
4025
let r' = mapi r f in
4026
4026
Node(l', v, d', r', h)
4027
4027
4028
- let rec fold f m accu =
4028
+ let rec fold m accu f =
4029
4029
match m with
4030
4030
Empty -> accu
4031
4031
| Node(l, v, d, r, _) ->
4032
- fold f r (f v d (fold f l accu))
4032
+ fold r (f v d (fold l accu f)) f
4033
4033
4034
- let rec for_all p = function
4034
+ let rec for_all x p = match x with
4035
4035
Empty -> true
4036
- | Node(l, v, d, r, _) -> p v d && for_all p l && for_all p r
4036
+ | Node(l, v, d, r, _) -> p v d && for_all l p && for_all r p
4037
4037
4038
- let rec exists p = function
4038
+ let rec exists x p = match x with
4039
4039
Empty -> false
4040
- | Node(l, v, d, r, _) -> p v d || exists p l || exists p r
4040
+ | Node(l, v, d, r, _) -> p v d || exists l p || exists r p
4041
4041
4042
4042
(* Beware: those two functions assume that the added k is *strictly*
4043
4043
smaller (or bigger) than all the present keys in the tree; it
@@ -4086,22 +4086,22 @@ let concat_or_join t1 v d t2 =
4086
4086
| Some d -> join t1 v d t2
4087
4087
| None -> concat t1 t2
4088
4088
4089
- let rec filter p = function
4089
+ let rec filter x p = match x with
4090
4090
Empty -> Empty
4091
4091
| Node(l, v, d, r, _) ->
4092
4092
(* call [p] in the expected left-to-right order *)
4093
- let l' = filter p l in
4093
+ let l' = filter l p in
4094
4094
let pvd = p v d in
4095
- let r' = filter p r in
4095
+ let r' = filter r p in
4096
4096
if pvd then join l' v d r' else concat l' r'
4097
4097
4098
- let rec partition p = function
4098
+ let rec partition x p = match x with
4099
4099
Empty -> (Empty, Empty)
4100
4100
| Node(l, v, d, r, _) ->
4101
4101
(* call [p] in the expected left-to-right order *)
4102
- let (lt, lf) = partition p l in
4102
+ let (lt, lf) = partition l p in
4103
4103
let pvd = p v d in
4104
- let (rt, rf) = partition p r in
4104
+ let (rt, rf) = partition r p in
4105
4105
if pvd
4106
4106
then (join lt v d rt, concat lf rf)
4107
4107
else (concat lt rt, join lf v d rf)
@@ -4158,48 +4158,49 @@ module type S =
4158
4158
[m], except for [x] which is unbound in the returned map. *)
4159
4159
4160
4160
val merge:
4161
- (key -> 'a option -> 'b option -> 'c option) -> 'a t -> 'b t -> 'c t
4161
+ 'a t -> 'b t ->
4162
+ (key -> 'a option -> 'b option -> 'c option) -> 'c t
4162
4163
(** [merge f m1 m2] computes a map whose keys is a subset of keys of [m1]
4163
4164
and of [m2]. The presence of each such binding, and the corresponding
4164
4165
value, is determined with the function [f].
4165
4166
@since 3.12.0
4166
4167
*)
4167
4168
4168
- val disjoint_merge : 'a t -> 'a t -> 'a t
4169
+ val disjoint_merge : 'a t -> 'a t -> 'a t
4169
4170
(* merge two maps, will raise if they have the same key *)
4170
- val compare: ( 'a -> 'a -> int) -> 'a t -> 'a t -> int
4171
+ val compare: 'a t -> 'a t -> ( 'a -> 'a -> int) -> int
4171
4172
(** Total ordering between maps. The first argument is a total ordering
4172
4173
used to compare data associated with equal keys in the two maps. *)
4173
4174
4174
- val equal: ( 'a -> 'a -> bool) -> 'a t -> 'a t -> bool
4175
+ val equal: 'a t -> 'a t -> ( 'a -> 'a -> bool) -> bool
4175
4176
4176
4177
val iter: 'a t -> (key -> 'a -> unit) -> unit
4177
4178
(** [iter f m] applies [f] to all bindings in map [m].
4178
4179
The bindings are passed to [f] in increasing order. *)
4179
4180
4180
- val fold: (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
4181
+ val fold: 'a t -> 'b -> (key -> 'a -> 'b -> 'b) -> 'b
4181
4182
(** [fold f m a] computes [(f kN dN ... (f k1 d1 a)...)],
4182
4183
where [k1 ... kN] are the keys of all bindings in [m]
4183
4184
(in increasing order) *)
4184
4185
4185
- val for_all: (key -> 'a -> bool) -> 'a t -> bool
4186
+ val for_all: 'a t -> (key -> 'a -> bool) -> bool
4186
4187
(** [for_all p m] checks if all the bindings of the map.
4187
4188
order unspecified
4188
4189
*)
4189
4190
4190
- val exists: (key -> 'a -> bool) -> 'a t -> bool
4191
+ val exists: 'a t -> (key -> 'a -> bool) -> bool
4191
4192
(** [exists p m] checks if at least one binding of the map
4192
4193
satisfy the predicate [p].
4193
4194
order unspecified
4194
4195
*)
4195
4196
4196
- val filter: (key -> 'a -> bool) -> 'a t -> 'a t
4197
+ val filter: 'a t -> (key -> 'a -> bool) -> 'a t
4197
4198
(** [filter p m] returns the map with all the bindings in [m]
4198
4199
that satisfy predicate [p].
4199
4200
order unspecified
4200
4201
*)
4201
4202
4202
- val partition: (key -> 'a -> bool) -> 'a t -> 'a t * 'a t
4203
+ val partition: 'a t -> (key -> 'a -> bool) -> 'a t * 'a t
4203
4204
(** [partition p m] returns a pair of maps [(m1, m2)], where
4204
4205
[m1] contains all the bindings of [s] that satisfy the
4205
4206
predicate [p], and [m2] is the map with all the bindings of
@@ -4244,7 +4245,7 @@ module type S =
4244
4245
or raises [Not_found] if no such binding exists. *)
4245
4246
val find_opt: 'a t -> key ->'a option
4246
4247
val find_default: 'a t -> key -> 'a -> 'a
4247
- val map: ( 'a -> 'b) -> 'a t -> 'b t
4248
+ val map: 'a t -> ('a -> 'b) -> 'b t
4248
4249
(** [map f m] returns a map with same domain as [m], where the
4249
4250
associated value [a] of all bindings of [m] has been
4250
4251
replaced by the result of the application of [f] to [a].
@@ -4409,15 +4410,15 @@ let rec split x (tree : _ Map_gen.t as 'a) : 'a * _ option * 'a = match tree wi
4409
4410
else
4410
4411
let (lr, pres, rr) = split x r in (Map_gen.join l v d lr, pres, rr)
4411
4412
4412
- let rec merge f (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
4413
+ let rec merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) f : _ Map_gen.t =
4413
4414
match (s1, s2) with
4414
4415
| (Empty, Empty) -> Empty
4415
4416
| (Node (l1, v1, d1, r1, h1), _) when h1 >= height s2 ->
4416
4417
let (l2, d2, r2) = split v1 s2 in
4417
- Map_gen.concat_or_join (merge f l1 l2) v1 (f v1 (Some d1) d2) (merge f r1 r2)
4418
+ Map_gen.concat_or_join (merge l1 l2 f ) v1 (f v1 (Some d1) d2) (merge r1 r2 f )
4418
4419
| (_, Node (l2, v2, d2, r2, h2)) ->
4419
4420
let (l1, d1, r1) = split v2 s1 in
4420
- Map_gen.concat_or_join (merge f l1 l2) v2 (f v2 d1 (Some d2)) (merge f r1 r2)
4421
+ Map_gen.concat_or_join (merge l1 l2 f ) v2 (f v2 d1 (Some d2)) (merge r1 r2 f )
4421
4422
| _ ->
4422
4423
assert false
4423
4424
@@ -4443,9 +4444,9 @@ let rec disjoint_merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
4443
4444
4444
4445
4445
4446
4446
- let compare cmp m1 m2 = Map_gen.compare compare_key cmp m1 m2
4447
+ let compare m1 m2 cmp = Map_gen.compare compare_key cmp m1 m2
4447
4448
4448
- let equal cmp m1 m2 = Map_gen.equal compare_key cmp m1 m2
4449
+ let equal m1 m2 cmp = Map_gen.equal compare_key cmp m1 m2
4449
4450
4450
4451
let add_list (xs : _ list ) init =
4451
4452
List.fold_left (fun acc (k,v) -> add acc k v ) init xs
@@ -4820,7 +4821,7 @@ let rec equal
4820
4821
| Obj {map} ->
4821
4822
begin match y with
4822
4823
| Obj { map = map2} ->
4823
- String_map.equal equal map map2
4824
+ String_map.equal map map2 equal
4824
4825
| _ -> false
4825
4826
end
4826
4827
@@ -7128,7 +7129,7 @@ let collect_module_by_filename ~dir (map : t) file_name : t =
7128
7129
7129
7130
7130
7131
let sanity_check (map : t ) =
7131
- String_map.exists (fun _ module_info ->
7132
+ String_map.exists map (fun _ module_info ->
7132
7133
match module_info with
7133
7134
| { ml_info = Ml_source(is_re,_);
7134
7135
mli_info = Mli_source(is_rei,_) } ->
@@ -7137,7 +7138,7 @@ let sanity_check (map : t ) =
7137
7138
| {mli_info = Mli_source(is_re,_); ml_info = Ml_empty}
7138
7139
-> is_re
7139
7140
| {ml_info = Ml_empty ; mli_info = Mli_empty } -> false
7140
- ) map
7141
+ )
7141
7142
7142
7143
end
7143
7144
module Bsb_db_io : sig
@@ -11492,10 +11493,10 @@ sig
11492
11493
val of_array : elt array -> t
11493
11494
val copy : t -> t
11494
11495
val reverse_in_place : t -> unit
11495
- val iter : (elt -> unit) -> t -> unit
11496
- val iteri : (int -> elt -> unit ) -> t -> unit
11497
- val iter_range : from:int -> to_:int -> (elt -> unit) -> t -> unit
11498
- val iteri_range : from:int -> to_:int -> (int -> elt -> unit) -> t -> unit
11496
+ val iter : t -> (elt -> unit) -> unit
11497
+ val iteri : t -> (int -> elt -> unit ) -> unit
11498
+ val iter_range : t -> from:int -> to_:int -> (elt -> unit) -> unit
11499
+ val iteri_range : t -> from:int -> to_:int -> (int -> elt -> unit) -> unit
11499
11500
val map : (elt -> elt) -> t -> t
11500
11501
val mapi : (int -> elt -> elt) -> t -> t
11501
11502
val map_into_array : (elt -> 'f) -> t -> 'f array
@@ -11669,27 +11670,27 @@ let sub (src : t) start len =
11669
11670
{ len ;
11670
11671
arr = unsafe_sub src.arr start len }
11671
11672
11672
- let iter f d =
11673
+ let iter d f =
11673
11674
let arr = d.arr in
11674
11675
for i = 0 to d.len - 1 do
11675
11676
f (Array.unsafe_get arr i)
11676
11677
done
11677
11678
11678
- let iteri f d =
11679
+ let iteri d f =
11679
11680
let arr = d.arr in
11680
11681
for i = 0 to d.len - 1 do
11681
11682
f i (Array.unsafe_get arr i)
11682
11683
done
11683
11684
11684
- let iter_range ~from ~to_ f d =
11685
+ let iter_range d ~from ~to_ f =
11685
11686
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iter_range"
11686
11687
else
11687
11688
let d_arr = d.arr in
11688
11689
for i = from to to_ do
11689
11690
f (Array.unsafe_get d_arr i)
11690
11691
done
11691
11692
11692
- let iteri_range ~from ~to_ f d =
11693
+ let iteri_range d ~from ~to_ f =
11693
11694
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iteri_range"
11694
11695
else
11695
11696
let d_arr = d.arr in
@@ -12548,7 +12549,7 @@ let rec equal
12548
12549
| Obj map ->
12549
12550
begin match y with
12550
12551
| Obj map2 ->
12551
- String_map.equal equal map map2
12552
+ String_map.equal map map2 equal
12552
12553
| _ -> false
12553
12554
end
12554
12555
@@ -12587,15 +12588,15 @@ let rec encode_aux (x : t )
12587
12588
(*prerr_endline "WEIRD";
12588
12589
prerr_endline (string_of_int @@ String_map.cardinal map ); *)
12589
12590
a "{ ";
12590
- let _ : int = String_map.fold (fun k v i ->
12591
+ let _ : int = String_map.fold map 0 (fun k v i ->
12591
12592
if i <> 0 then begin
12592
12593
a " , "
12593
12594
end;
12594
12595
a (quot k);
12595
12596
a " : ";
12596
12597
encode_aux v buf ;
12597
12598
i + 1
12598
- ) map 0 in
12599
+ ) in
12599
12600
a " }"
12600
12601
end
12601
12602
@@ -13504,7 +13505,7 @@ let rec strip (x : Ext_json_types.t) : Ext_json_noloc.t =
13504
13505
| Str {str = s} -> str s
13505
13506
| Arr {content } -> arr (Array.map strip content)
13506
13507
| Obj {map} ->
13507
- obj (String_map.map strip map)
13508
+ obj (String_map.map map strip )
13508
13509
13509
13510
let id_parsing_serializing x =
13510
13511
let normal_s =
@@ -13940,15 +13941,15 @@ let rec split x (tree : _ Map_gen.t as 'a) : 'a * _ option * 'a = match tree wi
13940
13941
else
13941
13942
let (lr, pres, rr) = split x r in (Map_gen.join l v d lr, pres, rr)
13942
13943
13943
- let rec merge f (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
13944
+ let rec merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) f : _ Map_gen.t =
13944
13945
match (s1, s2) with
13945
13946
| (Empty, Empty) -> Empty
13946
13947
| (Node (l1, v1, d1, r1, h1), _) when h1 >= height s2 ->
13947
13948
let (l2, d2, r2) = split v1 s2 in
13948
- Map_gen.concat_or_join (merge f l1 l2) v1 (f v1 (Some d1) d2) (merge f r1 r2)
13949
+ Map_gen.concat_or_join (merge l1 l2 f ) v1 (f v1 (Some d1) d2) (merge r1 r2 f )
13949
13950
| (_, Node (l2, v2, d2, r2, h2)) ->
13950
13951
let (l1, d1, r1) = split v2 s1 in
13951
- Map_gen.concat_or_join (merge f l1 l2) v2 (f v2 d1 (Some d2)) (merge f r1 r2)
13952
+ Map_gen.concat_or_join (merge l1 l2 f ) v2 (f v2 d1 (Some d2)) (merge r1 r2 f )
13952
13953
| _ ->
13953
13954
assert false
13954
13955
@@ -13974,9 +13975,9 @@ let rec disjoint_merge (s1 : _ Map_gen.t) (s2 : _ Map_gen.t) : _ Map_gen.t =
13974
13975
13975
13976
13976
13977
13977
- let compare cmp m1 m2 = Map_gen.compare compare_key cmp m1 m2
13978
+ let compare m1 m2 cmp = Map_gen.compare compare_key cmp m1 m2
13978
13979
13979
- let equal cmp m1 m2 = Map_gen.equal compare_key cmp m1 m2
13980
+ let equal m1 m2 cmp = Map_gen.equal compare_key cmp m1 m2
13980
13981
13981
13982
let add_list (xs : _ list ) init =
13982
13983
List.fold_left (fun acc (k,v) -> add acc k v ) init xs
@@ -14486,27 +14487,27 @@ let sub (src : t) start len =
14486
14487
{ len ;
14487
14488
arr = unsafe_sub src.arr start len }
14488
14489
14489
- let iter f d =
14490
+ let iter d f =
14490
14491
let arr = d.arr in
14491
14492
for i = 0 to d.len - 1 do
14492
14493
f (Array.unsafe_get arr i)
14493
14494
done
14494
14495
14495
- let iteri f d =
14496
+ let iteri d f =
14496
14497
let arr = d.arr in
14497
14498
for i = 0 to d.len - 1 do
14498
14499
f i (Array.unsafe_get arr i)
14499
14500
done
14500
14501
14501
- let iter_range ~from ~to_ f d =
14502
+ let iter_range d ~from ~to_ f =
14502
14503
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iter_range"
14503
14504
else
14504
14505
let d_arr = d.arr in
14505
14506
for i = from to to_ do
14506
14507
f (Array.unsafe_get d_arr i)
14507
14508
done
14508
14509
14509
- let iteri_range ~from ~to_ f d =
14510
+ let iteri_range d ~from ~to_ f =
14510
14511
if from < 0 || to_ >= d.len then invalid_arg "Resize_array.iteri_range"
14511
14512
else
14512
14513
let d_arr = d.arr in
@@ -15028,11 +15029,9 @@ let graph e =
15028
15029
15029
15030
index_array.(v_data) <- new_index ;
15030
15031
lowlink_array.(v_data) <- new_index ;
15031
- on_stack_array.(v_data) <- true ;
15032
-
15033
- let v = e.(v_data) in
15034
- v
15035
- |> Int_vec.iter (fun w_data ->
15032
+ on_stack_array.(v_data) <- true ;
15033
+ let v = e.(v_data) in
15034
+ Int_vec.iter v (fun w_data ->
15036
15035
if Array.unsafe_get index_array w_data < 0 then (* not processed *)
15037
15036
begin
15038
15037
scc w_data;
@@ -16217,9 +16216,8 @@ let layered_dfs (g : t) =
16217
16216
then
16218
16217
begin
16219
16218
Queue.push new_entries queue ;
16220
- Edge_vec.iter
16221
- (fun edges -> Int_vec.inplace_filter
16222
- (fun x -> not (Set_int.mem new_entries x)) edges.deps ) g ;
16219
+ Edge_vec.iter g (fun edges -> Int_vec.inplace_filter
16220
+ (fun x -> not (Set_int.mem new_entries x)) edges.deps ) ;
16223
16221
aux g
16224
16222
end
16225
16223
in aux g ; queue
0 commit comments