Source file batHashtbl.ml
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
(** {6 Import the contents of {!Hashtbl}}
Note: We can't directly [include Hashtbl] as this would cause a
collision on [Make]*)
type ('a, 'b) t = ('a, 'b) Hashtbl.t
let create s = Hashtbl.create s
let clear = Hashtbl.clear
let reset = Hashtbl.reset
let add = Hashtbl.add
let copy = Hashtbl.copy
let find = Hashtbl.find
let find_all = Hashtbl.find_all
let mem = Hashtbl.mem
let remove = Hashtbl.remove
let replace = Hashtbl.replace
let iter = Hashtbl.iter
let fold = Hashtbl.fold
let hash = Hashtbl.hash
type statistics = Hashtbl.statistics
let stats = Hashtbl.stats
##V>=4.07##let to_seq = Hashtbl.to_seq
##V>=4.07##let to_seq_keys = Hashtbl.to_seq_keys
##V>=4.07##let to_seq_values = Hashtbl.to_seq_values
##V>=4.07##let add_seq = Hashtbl.add_seq
##V>=4.07##let replace_seq = Hashtbl.replace_seq
##V>=4.07##let of_seq = Hashtbl.of_seq
type ('a, 'b) h_bucketlist =
| Empty
| Cons of 'a * 'b * ('a, 'b) h_bucketlist
type ('a, 'b) h_t = {
mutable size: int;
mutable data: ('a, 'b) h_bucketlist array;
##V>=4## mutable seed: int;
##V>=4## initial_size: int;
}
external h_conv : ('a, 'b) t -> ('a, 'b) h_t = "%identity"
external h_make : ('a, 'b) h_t -> ('a, 'b) t = "%identity"
##V>=4## let key_index h key =
##V>=4## if Obj.size (Obj.repr h) >= 3
##V>=4## then Hashtbl.seeded_hash (h_conv h).seed key
##V>=4## land (Array.length (h_conv h).data - 1)
##V>=4## else (Hashtbl.hash key land max_int) mod (Array.length (h_conv h).data)
##V<4## let key_index h key = (Hashtbl.hash key land max_int)
##V<4## mod (Array.length (h_conv h).data)
let enum h =
let rec make ipos ibuck idata icount =
let pos = ref ipos in
let buck = ref ibuck in
let hdata = ref idata in
let hcount = ref icount in
let force() =
if !hcount = -1 then (
hcount := (h_conv h).size;
hdata := Array.copy (h_conv h).data;
);
in
let rec next() =
force();
match !buck with
| Empty ->
if !hcount = 0 then raise BatEnum.No_more_elements;
incr pos;
buck := Array.unsafe_get !hdata !pos;
next()
| Cons (k,i,next_buck) ->
buck := next_buck;
decr hcount;
(k,i)
in
let count() =
if !hcount = -1 then (h_conv h).size else !hcount
in
let clone() =
force();
make !pos !buck !hdata !hcount
in
BatEnum.make ~next ~count ~clone
in
make (-1) Empty (Obj.magic()) (-1)
let to_list ht =
fold (fun k v acc ->
(k, v) :: acc
) ht []
let of_list l =
let res = create 11 in
List.iter (fun (k, v) ->
add res k v
) l;
res
let bindings ht = to_list ht
let keys h = BatEnum.map (fun (k,_) -> k) (enum h)
let values h = BatEnum.map (fun (_,v) -> v) (enum h)
let map f h =
let rec loop = function
| Empty -> Empty
| Cons (k,v,next) -> Cons (k,f k v,loop next)
in
let hc = h_conv h in
h_make { hc with data = Array.map loop hc.data; }
let map_inplace f h =
let rec loop = function
| Empty -> Empty
| Cons (k, v, next) -> Cons (k, f k v, loop next)
in
BatArray.modify loop (h_conv h).data
let remove_all h key =
let hc = h_conv h in
let rec loop = function
| Empty -> Empty
| Cons(k,v,next) ->
if k = key then (
hc.size <- pred hc.size;
loop next
) else
Cons(k,v,loop next)
in
let pos = key_index h key in
Array.unsafe_set hc.data pos (loop (Array.unsafe_get hc.data pos))
let find_default h key defval =
let rec loop = function
| Empty -> defval
| Cons (k,v,next) ->
if k = key then v else loop next
in
let pos = key_index h key in
loop (Array.unsafe_get (h_conv h).data pos)
let find_option h key =
let rec loop = function
| Empty -> None
| Cons (k,v,next) ->
if k = key then Some v else loop next
in
let pos = key_index h key in
loop (Array.unsafe_get (h_conv h).data pos)
let find_opt = find_option
exception Verified
let exists p ht =
try
iter (fun k v ->
if p k v then raise Verified
) ht;
false
with Verified -> true
let of_enum e =
let h = create (if BatEnum.fast_count e then BatEnum.count e else 0) in
BatEnum.iter (fun (k,v) -> add h k v) e;
h
let length h = (h_conv h).size
let is_empty h = length h = 0
exception Hashtbl_key_not_found
let modify_opt key f h =
let hc = h_conv h in
let rec loop = function
| Empty ->
raise Hashtbl_key_not_found
| Cons(k,v,next) ->
if k = key then
match f (Some v) with
| Some v -> Cons(key,v,next)
| None ->
hc.size <- pred hc.size;
next
else
Cons(k,v,loop next)
in
try
let pos = key_index h key in
Array.unsafe_set hc.data pos (loop (Array.unsafe_get hc.data pos))
with
| Hashtbl_key_not_found ->
begin match f None with
| None -> ()
| Some v ->
add h key v
end
let modify key f h =
let hc = h_conv h in
let rec loop = function
| Empty -> raise Not_found
| Cons(k,v,next) ->
if k = key then (
Cons(key,f v,next)
) else
Cons(k,v,loop next)
in
let pos = key_index h key in
Array.unsafe_set hc.data pos (loop (Array.unsafe_get hc.data pos))
let modify_def v0 key f h =
let f' = function
| None -> Some (f v0)
| Some v -> Some (f v)
in
modify_opt key f' h
let print ?(first="{\n") ?(last="\n}") ?(sep=",\n") ?(kvsep=": ") print_k print_v out t =
BatEnum.print ~first ~last ~sep (fun out (k,v) -> BatPrintf.fprintf out "%a%s%a" print_k k kvsep print_v v) out (enum t)
let filteri (f:'key -> 'a -> bool) (t:('key, 'a) t) =
let result = create 16 in
iter (fun k a -> if f k a then add result k a) t;
result
let filteri_inplace f h =
let hc = h_conv h in
let rec loop = function
| Empty -> Empty
| Cons (k, v, next) ->
if f k v then Cons (k, v, loop next)
else (
hc.size <- pred hc.size ;
loop next
) in
BatArray.modify loop hc.data
let filter f t = filteri (fun _k a -> f a) t
let filter_inplace f h = filteri_inplace (fun _k a -> f a) h
let filter_map f t =
let result = create 16 in
iter (fun k a -> match f k a with
| None -> ()
| Some v -> add result k v) t;
result
let filter_map_inplace f h =
let hc = h_conv h in
let rec loop = function
| Empty -> Empty
| Cons (k, v, next) ->
(match f k v with
| None ->
hc.size <- pred hc.size ;
loop next
| Some v' -> Cons (k, v', loop next)) in
BatArray.modify loop hc.data
let merge f h1 h2 =
let res = create (max (length h1) (length h2)) in
let may_add_res k v1 v2 =
BatOption.may (add res k) (f k v1 v2) in
iter (fun k v1 ->
may_add_res k (Some v1) (find_option h2 k)
) h1 ;
iter (fun k v2 ->
if not (mem h1 k) then
may_add_res k None (Some v2)
) h2 ;
res
let merge_all f h1 h2 =
let res = create (max (length h1) (length h2)) in
let may_add_res k v1 v2 =
List.iter (add res k) (List.rev (f k v1 v2)) in
iter (fun k _ ->
let l1 = find_all h1 k
and l2 = find_all h2 k in
may_add_res k l1 l2
) h1 ;
iter (fun k _ ->
match find_all h1 k with
| [] ->
let l2 = find_all h2 k in
may_add_res k [] l2
| _ -> ()
) h2 ;
res
exception Falsified
let for_all p ht =
try
iter (fun k v ->
if not (p k v) then
raise Falsified
) ht;
true
with Falsified -> false
module Exceptionless =
struct
let find = find_option
let modify k f = BatPervasives.wrap (modify k f)
end
module Infix =
struct
let (-->) h k = find h k
let (<--) h (k,v) = add h k v
end
module Labels =
struct
let label f = fun key data -> f ~key ~data
let add e ~key ~data = add e key data
let replace e ~key ~data = replace e key data
let iter ~f e = iter (label f) e
let for_all ~f e = for_all (label f) e
let map ~f e = map (label f) e
let map_inplace ~f e = map_inplace (label f) e
let filter ~f e = filter f e
let filter_inplace ~f e = filter_inplace f e
let filteri ~f e = filteri (label f) e
let filteri_inplace ~f e = filteri_inplace (label f) e
let filter_map ~f e = filter_map (label f) e
let filter_map_inplace ~f e = filter_map_inplace (label f) e
let fold ~f e ~init = fold (label f) e init
let exists ~f e = exists (label f) e
let modify ~key ~f = modify key f
let modify_def ~default ~key ~f = modify_def default key f
let modify_opt ~key ~f = modify_opt key f
let merge ~f ~left ~right = merge f left right
let merge_all ~f ~left ~right = merge_all f left right
end
module type HashedType = Hashtbl.HashedType
module type S =
sig
type key
type 'a t
val create : int -> 'a t
val length : 'a t -> int
val is_empty : 'a t -> bool
val clear : 'a t -> unit
val reset : 'a t -> unit
val copy : 'a t -> 'a t
val add : 'a t -> key -> 'a -> unit
val remove : 'a t -> key -> unit
val remove_all : 'a t -> key -> unit
val find : 'a t -> key -> 'a
val find_all : 'a t -> key -> 'a list
val find_default : 'a t -> key -> 'a -> 'a
val find_option : 'a t -> key -> 'a option
val find_opt : 'a t -> key -> 'a option
val replace : 'a t -> key -> 'a -> unit
val mem : 'a t -> key -> bool
val iter : (key -> 'a -> unit) -> 'a t -> unit
val for_all : (key -> 'a -> bool) -> 'a t -> bool
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val exists : (key -> 'a -> bool) -> 'a t -> bool
val map : (key -> 'b -> 'c) -> 'b t -> 'c t
val map_inplace : (key -> 'a -> 'a) -> 'a t -> unit
val filter : ('a -> bool) -> 'a t -> 'a t
val filter_inplace : ('a -> bool) -> 'a t -> unit
val filteri : (key -> 'a -> bool) -> 'a t -> 'a t
val filteri_inplace : (key -> 'a -> bool) -> 'a t -> unit
val filter_map : (key -> 'a -> 'b option) -> 'a t -> 'b t
val filter_map_inplace : (key -> 'a -> 'a option) -> 'a t -> unit
val modify : key -> ('a -> 'a) -> 'a t -> unit
val modify_def : 'a -> key -> ('a -> 'a) -> 'a t -> unit
val modify_opt : key -> ('a option -> 'a option) -> 'a t -> unit
val merge : (key -> 'a option -> 'b option -> 'c option) ->
'a t -> 'b t -> 'c t
val merge_all : (key -> 'a list -> 'b list -> 'c list) ->
'a t -> 'b t -> 'c t
val stats : 'a t -> statistics
##V>=4.07## val to_seq : 'a t -> (key * 'a) Seq.t
##V>=4.07## val to_seq_keys : _ t -> key Seq.t
##V>=4.07## val to_seq_values : 'a t -> 'a Seq.t
##V>=4.07## val add_seq : 'a t -> (key * 'a) Seq.t -> unit
##V>=4.07## val replace_seq : 'a t -> (key * 'a) Seq.t -> unit
##V>=4.07## val of_seq : (key * 'a) Seq.t -> 'a t
val keys : 'a t -> key BatEnum.t
val values : 'a t -> 'a BatEnum.t
val enum : 'a t -> (key * 'a) BatEnum.t
val to_list: 'a t -> (key * 'a) list
val of_enum : (key * 'a) BatEnum.t -> 'a t
val of_list : (key * 'a) list -> 'a t
val print : ?first:string -> ?last:string -> ?sep:string ->
('a BatInnerIO.output -> key -> unit) ->
('a BatInnerIO.output -> 'b -> unit) ->
'a BatInnerIO.output -> 'b t -> unit
(** Operations on {!Hashtbl} without exceptions.*)
module Exceptionless :
sig
val find : 'a t -> key -> 'a option
val modify : key -> ('a -> 'a) -> 'a t -> (unit, exn) BatPervasives.result
end
(** Infix operators over a {!BatHashtbl} *)
module Infix :
sig
val (-->) : 'a t -> key -> 'a
(** [tbl-->x] returns the current binding of [x] in [tbl],
or raises [Not_found] if no such binding exists.
Equivalent to [Hashtbl.find tbl x]*)
val (<--) : 'a t -> key * 'a -> unit
(** [tbl<--(x, y)] adds a binding of [x] to [y] in table [tbl].
Previous bindings for [x] are not removed, but simply
hidden. That is, after performing {!Hashtbl.remove}[ tbl x],
the previous binding for [x], if any, is restored.
(Same behavior as with association lists.)
Equivalent to [Hashtbl.add tbl x y]*)
end
(** Operations on {!Hashtbl} with labels.
This module overrides a number of functions of {!Hashtbl} by
functions in which some arguments require labels. These labels are
there to improve readability and safety and to let you change the
order of arguments to functions. In every case, the behavior of the
function is identical to that of the corresponding function of {!Hashtbl}.
*)
module Labels :
sig
val add : 'a t -> key:key -> data:'a -> unit
val replace : 'a t -> key:key -> data:'a -> unit
val iter : f:(key:key -> data:'a -> unit) -> 'a t -> unit
val for_all : f:(key:key -> data:'a -> bool) -> 'a t -> bool
val map : f:(key:key -> data:'a -> 'b) -> 'a t -> 'b t
val map_inplace : f:(key:key -> data:'a -> 'a) -> 'a t -> unit
val filter : f:('a -> bool) -> 'a t -> 'a t
val filter_inplace : f:('a -> bool) -> 'a t -> unit
val filteri : f:(key:key -> data:'a -> bool) -> 'a t -> 'a t
val filteri_inplace : f:(key:key -> data:'a -> bool) -> 'a t -> unit
val filter_map : f:(key:key -> data:'a -> 'b option) -> 'a t -> 'b t
val filter_map_inplace : f:(key:key -> data:'a -> 'a option) -> 'a t -> unit
val fold : f:(key:key -> data:'a -> 'b -> 'b) -> 'a t -> init:'b -> 'b
val exists : f:(key:key -> data:'a -> bool) -> 'a t -> bool
val modify : key:key -> f:('a -> 'a) -> 'a t -> unit
val modify_def : default:'a -> key:key -> f:('a -> 'a) -> 'a t -> unit
val modify_opt : key:key -> f:('a option -> 'a option) -> 'a t -> unit
val merge : f:(key -> 'a option -> 'b option -> 'c option) ->
left:'a t -> right:'b t -> 'c t
val merge_all : f:(key -> 'a list -> 'b list -> 'c list) ->
left:'a t -> right:'b t -> 'c t
end
end
module Make(H: HashedType): (S with type key = H.t and type 'a t = 'a Hashtbl.Make (H).t) =
struct
include Hashtbl.Make(H)
external to_hash : 'a t -> (key, 'a) Hashtbl.t = "%identity"
external of_hash : (key, 'a) Hashtbl.t -> 'a t = "%identity"
let key_index h key =
(H.hash key) land (Array.length (h_conv (to_hash h)).data - 1)
let iter = iter
let for_all p ht = for_all p (to_hash ht)
let fold = fold
let length = length
let stats = stats
let enum h = enum (to_hash h)
let to_list h = to_list (to_hash h)
let values h = values (to_hash h)
let keys h = keys (to_hash h)
let map (f:key -> 'a -> 'b) h =
of_hash (map f (to_hash h))
let exists (f:key -> 'a -> bool) h = exists f (to_hash h)
let map_inplace (f:key -> 'a -> 'b) h = map_inplace f (to_hash h)
let filteri_inplace f h = filteri_inplace f (to_hash h)
let filter_inplace f h = filter_inplace f (to_hash h)
##V<4.3## let filter_map_inplace f h = filter_map_inplace f (to_hash h)
functions do need to hash values, so we cannot use {to,of}_hash *)
let of_enum e =
let tbl = create 11 in
BatEnum.iter (fun (k, v) -> add tbl k v) e;
tbl
let of_list li =
let tbl = create 11 in
List.iter (fun (k, v) -> add tbl k v) li;
tbl
let find_option h key =
let hc = h_conv (to_hash h) in
let rec loop = function
| Empty -> None
| Cons (k,v,next) ->
if H.equal k key then Some v else loop next
in
let pos = key_index h key in
loop (Array.unsafe_get hc.data pos)
##V<4.05## let find_opt = find_option
let find_default h key defval =
let hc = h_conv (to_hash h) in
let rec loop = function
| Empty -> defval
| Cons (k,v,next) ->
if H.equal k key then v else loop next
in
let pos = key_index h key in
loop (Array.unsafe_get hc.data pos)
let remove_all h key =
let hc = h_conv (to_hash h) in
let rec loop = function
| Empty -> Empty
| Cons(k,v,next) ->
if H.equal k key then begin
hc.size <- pred hc.size;
loop next
end else
Cons(k,v,loop next)
in
let pos = key_index h key in
Array.unsafe_set hc.data pos (loop (Array.unsafe_get hc.data pos))
let is_empty h = length h = 0
let print ?first ?last ?sep print_k print_v out t =
print ?first ?last ?sep print_k print_v out (to_hash t)
let filteri f t =
let result = create 16 in
iter (fun k a -> if f k a then add result k a) t;
result
let filter f t = filteri (fun _k a -> f a) t
let filter_map f t =
let result = create 16 in
iter (fun k a -> match f k a with
| None -> ()
| Some v -> add result k v) t;
result
let modify_opt key f h =
let hc = h_conv (to_hash h) in
let rec loop = function
| Empty ->
raise Hashtbl_key_not_found
| Cons(k,v,next) ->
if H.equal k key then
match f (Some v) with
| Some v -> Cons(key,v,next)
| None ->
hc.size <- pred hc.size;
next
else
Cons(k,v,loop next)
in
try
let pos = key_index h key in
Array.unsafe_set hc.data pos (loop (Array.unsafe_get hc.data pos))
with
| Hashtbl_key_not_found ->
begin match f None with
| None -> ()
| Some v ->
add h key v
end
let modify key f h =
let hc = h_conv (to_hash h) in
let rec loop = function
| Empty -> raise Not_found
| Cons(k,v,next) ->
if H.equal k key then (
Cons(key,f v,next)
) else
Cons(k,v,loop next)
in
let pos = key_index h key in
Array.unsafe_set hc.data pos (loop (Array.unsafe_get hc.data pos))
let modify_def v0 key f h =
let f' = function
| None -> Some (f v0)
| Some v -> Some (f v)
in
modify_opt key f' h
let merge f a b =
let res = create (max (length a) (length b)) in
let may_add_res k v1 v2 =
BatOption.may (add res k) (f k v1 v2) in
iter (fun k v1 ->
may_add_res k (Some v1) (find_option b k)
) a ;
iter (fun k v2 ->
if not (mem a k) then
may_add_res k None (Some v2)
) b ;
res
let merge_all f a b =
let res = create (max (length a) (length b)) in
let may_add_res k v1 v2 =
List.iter (add res k) (List.rev (f k v1 v2)) in
iter (fun k _ ->
let l1 = find_all a k
and l2 = find_all b k in
may_add_res k l1 l2
) a ;
iter (fun k _ ->
match find_all a k with
| [] ->
let l2 = find_all b k in
may_add_res k [] l2
| _ -> ()
) b ;
res
module Labels =
struct
let label f = fun key data -> f ~key ~data
let add e ~key ~data = add e key data
let replace e ~key ~data = replace e key data
let iter ~f e = iter (label f) e
let for_all ~f e = for_all (label f) e
let map ~f e = map (label f) e
let map_inplace ~f e = map_inplace (label f) e
let filter ~f e = filter f e
let filter_inplace ~f e = filter_inplace f e
let filteri ~f e = filteri (label f) e
let filteri_inplace ~f e = filteri_inplace (label f) e
let filter_map ~f e = filter_map (label f) e
let filter_map_inplace ~f e = filter_map_inplace (label f) e
let fold ~f e ~init = fold (label f) e init
let exists ~f e = exists (label f) e
let modify ~key ~f = modify key f
let modify_def ~default ~key ~f = modify_def default key f
let modify_opt ~key ~f = modify_opt key f
let merge ~f ~left ~right = merge f left right
let merge_all ~f ~left ~right = merge_all f left right
end
module Exceptionless =
struct
let find = find_option
let modify k f = BatPervasives.wrap (modify k f)
end
module Infix =
struct
let (-->) h k = find h k
let (<--) h (k,v) = add h k v
end
end
module Cap =
struct
type ('a, 'b, 'c) t = ('a, 'b) Hashtbl.t constraint 'c = [< `Read | `Write ]
let create = create
external of_table : ('a, 'b) Hashtbl.t -> ('a, 'b, _ ) t = "%identity"
external to_table : ('a, 'b, [`Read | `Write]) t -> ('a, 'b) Hashtbl.t = "%identity"
external read_only : ('a, 'b, [>`Read]) t -> ('a, 'b, [`Read]) t = "%identity"
external write_only : ('a, 'b, [>`Write]) t -> ('a, 'b, [`Write]) t = "%identity"
let length = length
let is_empty = is_empty
let add = add
let remove = remove
let remove_all = remove_all
let replace = replace
let copy = copy
let clear = clear
let find = find
let find_all = find_all
let find_default= find_default
let find_option = find_option
let exists = exists
let mem = mem
let iter = iter
let for_all = for_all
let fold = fold
let map = map
let map_inplace = map_inplace
let filter = filter
let filter_inplace = filter_inplace
let filteri = filteri
let filteri_inplace = filteri_inplace
let filter_map = filter_map
let filter_map_inplace = filter_map_inplace
let modify = modify
let modify_def = modify_def
let modify_opt = modify_opt
let stats = stats
let keys = keys
let values = values
let enum = enum
let to_list = to_list
let of_enum = of_enum
let of_list = of_list
let print = print
let filter = filter
let filteri = filteri
let filter_map = filter_map
let merge = merge
let merge_all = merge_all
module Labels =
struct
let label f = fun key data -> f ~key ~data
let add e ~key ~data = add e key data
let replace e ~key ~data = replace e key data
let iter ~f e = iter (label f) e
let for_all ~f e = for_all (label f) e
let map ~f e = map (label f) e
let map_inplace ~f e = map_inplace (label f) e
let filter ~f e = filter f e
let filter_inplace ~f e = filter_inplace f e
let filteri ~f e = filteri (label f) e
let filteri_inplace ~f e = filteri_inplace (label f) e
let filter_map ~f e = filter_map (label f) e
let filter_map_inplace ~f e = filter_map_inplace (label f) e
let fold ~f e ~init = fold (label f) e init
let exists ~f e = exists (label f) e
let modify ~key ~f = modify key f
let modify_def ~default ~key ~f = modify_def default key f
let modify_opt ~key ~f = modify_opt key f
let merge ~f ~left ~right = merge f left right
let merge_all ~f ~left ~right = merge_all f left right
end
module Exceptionless =
struct
let find = find_option
let modify k f = BatPervasives.wrap (modify k f)
end
end