Source file set_intf.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
(** This module defines interfaces used in {{!Core.Set}[Set]}. See the
{!Map} docs for a description of the design.
This module defines module types
[{Creators,Accessors}{0,1,2,_generic,_with_comparator}]. It uses check functors to
ensure that each module type is an instance of the corresponding [_generic] one.
We must treat [Creators] and [Accessors] separately, because we sometimes need to
choose different instantiations of their [options]. In particular, [Set] itself
matches [Creators2_with_comparator] but [Accessors2] (without comparator).
*)
open! Import
open T
module Binable = Binable0
module Set = Base.Set
module Tree = Set.Using_comparator.Tree
module Named = Set.Named
module Container = Base.Container
module type Elt_plain = Set.Elt_plain
module type Elt = sig
type t [@@deriving compare, sexp]
end
module type Elt_binable = sig
type t [@@deriving bin_io, compare, sexp]
end
module Elt_bin_io = struct
module type S = sig
type t [@@deriving bin_io]
type comparator_witness
val comparator : (t, comparator_witness) Comparator.t
end
type ('t, 'c) t = (module S with type t = 't and type comparator_witness = 'c)
end
module type For_deriving = sig
include Base.Set.For_deriving
module M = Base.Set.M
(** The following [*bin*] functions support bin-io on base-style sets, e.g.:
{[ type t = Set.M(String).t [@@deriving bin_io] ]} *)
val bin_shape_m__t : ('a, 'b) Elt_bin_io.t -> Bin_prot.Shape.t
val bin_size_m__t : ('a, 'b) Elt_bin_io.t -> ('a, 'b) t Bin_prot.Size.sizer
val bin_write_m__t : ('a, 'b) Elt_bin_io.t -> ('a, 'b) t Bin_prot.Write.writer
val bin_read_m__t : ('a, 'b) Elt_bin_io.t -> ('a, 'b) t Bin_prot.Read.reader
val __bin_read_m__t__
: ('a, 'b) Elt_bin_io.t
-> (int -> ('a, 'b) t) Bin_prot.Read.reader
(** The following [quickcheck*] functions support deriving quickcheck on base-style
sets, e.g.:
{[ type t = Set.M(String).t [@@deriving quickcheck] ]} *)
module type Quickcheck_generator_m = sig
include Comparator.S
val quickcheck_generator : t Quickcheck.Generator.t
end
module type Quickcheck_observer_m = sig
include Comparator.S
val quickcheck_observer : t Quickcheck.Observer.t
end
module type Quickcheck_shrinker_m = sig
include Comparator.S
val quickcheck_shrinker : t Quickcheck.Shrinker.t
end
val quickcheck_generator_m__t
: (module Quickcheck_generator_m with type t = 'a and type comparator_witness = 'cmp)
-> ('a, 'cmp) t Quickcheck.Generator.t
val quickcheck_observer_m__t
: (module Quickcheck_observer_m with type t = 'a and type comparator_witness = 'cmp)
-> ('a, 'cmp) t Quickcheck.Observer.t
val quickcheck_shrinker_m__t
: (module Quickcheck_shrinker_m with type t = 'a and type comparator_witness = 'cmp)
-> ('a, 'cmp) t Quickcheck.Shrinker.t
end
module Without_comparator = Set.Without_comparator
module With_comparator = Set.With_comparator
module With_first_class_module = Set.With_first_class_module
module Continue_or_stop = Container.Continue_or_stop
module Merge_to_sequence_element = Sequence.Merge_with_duplicates_element
module type Accessors_generic = sig
include Set.Accessors_generic
val to_map
: ( 'a
, 'cmp
, ('a, 'cmp) t -> f:('a elt -> 'b) -> ('a elt, 'b, 'cmp cmp) Base.Map.t )
options
val quickcheck_observer
: 'a elt Quickcheck.Observer.t
-> ('a, 'cmp) t Quickcheck.Observer.t
val quickcheck_shrinker
: ( 'a
, 'cmp
, 'a elt Quickcheck.Shrinker.t -> ('a, 'cmp) t Quickcheck.Shrinker.t )
options
end
module type Accessors0 = sig
include Set.Accessors0
val to_map : t -> f:(elt -> 'data) -> (elt, 'data, comparator_witness) Base.Map.t
val quickcheck_observer : elt Quickcheck.Observer.t -> t Quickcheck.Observer.t
val quickcheck_shrinker : elt Quickcheck.Shrinker.t -> t Quickcheck.Shrinker.t
end
module type Accessors1 = sig
include Set.Accessors1
val to_map : 'a t -> f:('a -> 'b) -> ('a, 'b, comparator_witness) Base.Map.t
val quickcheck_observer : 'a Quickcheck.Observer.t -> 'a t Quickcheck.Observer.t
val quickcheck_shrinker : 'a Quickcheck.Shrinker.t -> 'a t Quickcheck.Shrinker.t
end
module type Accessors2 = sig
include Set.Accessors2
val to_map : ('a, 'cmp) t -> f:('a -> 'b) -> ('a, 'b, 'cmp) Base.Map.t
val quickcheck_observer : 'a Quickcheck.Observer.t -> ('a, 'cmp) t Quickcheck.Observer.t
val quickcheck_shrinker : 'a Quickcheck.Shrinker.t -> ('a, 'cmp) t Quickcheck.Shrinker.t
end
module type Accessors2_with_comparator = sig
include Set.Accessors2_with_comparator
val to_map
: comparator:('a, 'cmp) Comparator.t
-> ('a, 'cmp) t
-> f:('a -> 'b)
-> ('a, 'b, 'cmp) Base.Map.t
val quickcheck_observer : 'a Quickcheck.Observer.t -> ('a, 'cmp) t Quickcheck.Observer.t
val quickcheck_shrinker
: comparator:('a, 'cmp) Comparator.t
-> 'a Quickcheck.Shrinker.t
-> ('a, 'cmp) t Quickcheck.Shrinker.t
end
(** Consistency checks (same as in [Container]). *)
module Check_accessors
(T : T2)
(Tree : T2)
(Elt : T1)
(Named : T2)
(Cmp : T1)
(Options : T3)
(_ : Accessors_generic
with type ('a, 'b, 'c) options := ('a, 'b, 'c) Options.t
with type ('a, 'b) t := ('a, 'b) T.t
with type ('a, 'b) tree := ('a, 'b) Tree.t
with type 'a elt := 'a Elt.t
with type 'cmp cmp := 'cmp Cmp.t
with type ('a, 'b) named := ('a, 'b) Named.t) =
struct end
module Check_accessors0 (M : Accessors0) =
Check_accessors
(struct
type ('a, 'b) t = M.t
end)
(struct
type ('a, 'b) t = M.tree
end)
(struct
type 'a t = M.elt
end)
(struct
type ('a, 'b) t = M.named
end)
(struct
type 'a t = M.comparator_witness
end)
(Without_comparator)
(M)
module Check_accessors1 (M : Accessors1) =
Check_accessors
(struct
type ('a, 'b) t = 'a M.t
end)
(struct
type ('a, 'b) t = 'a M.tree
end)
(struct
type 'a t = 'a
end)
(struct
type ('a, 'b) t = 'a M.named
end)
(struct
type 'a t = M.comparator_witness
end)
(Without_comparator)
(M)
module Check_accessors2 (M : Accessors2) =
Check_accessors
(struct
type ('a, 'b) t = ('a, 'b) M.t
end)
(struct
type ('a, 'b) t = ('a, 'b) M.tree
end)
(struct
type 'a t = 'a
end)
(struct
type ('a, 'b) t = ('a, 'b) M.named
end)
(struct
type 'a t = 'a
end)
(Without_comparator)
(M)
module Check_accessors2_with_comparator (M : Accessors2_with_comparator) =
Check_accessors
(struct
type ('a, 'b) t = ('a, 'b) M.t
end)
(struct
type ('a, 'b) t = ('a, 'b) M.tree
end)
(struct
type 'a t = 'a
end)
(struct
type ('a, 'b) t = ('a, 'b) M.named
end)
(struct
type 'a t = 'a
end)
(With_comparator)
(M)
module type Creators_generic = sig
include Set.Creators_generic
val of_hash_set : ('a, 'cmp, 'a elt Hash_set.t -> ('a, 'cmp) t) options
val of_hashtbl_keys : ('a, 'cmp, ('a elt, _) Hashtbl.t -> ('a, 'cmp) t) options
(** Never requires a comparator because it can get one from the input [Map.t]. *)
val of_map_keys : ('a elt, _, 'cmp cmp) Base.Map.t -> ('a, 'cmp) t
val quickcheck_generator
: ( 'a
, 'cmp
, 'a elt Quickcheck.Generator.t -> ('a, 'cmp) t Quickcheck.Generator.t )
options
end
module type Creators0 = sig
include Set.Creators0
val of_hash_set : elt Hash_set.t -> t
val of_hashtbl_keys : (elt, _) Hashtbl.t -> t
val of_map_keys : (elt, _, comparator_witness) Base.Map.t -> t
val quickcheck_generator : elt Quickcheck.Generator.t -> t Quickcheck.Generator.t
end
module type Creators1 = sig
include Set.Creators1
val of_hash_set : 'a Hash_set.t -> 'a t
val of_hashtbl_keys : ('a, _) Hashtbl.t -> 'a t
val of_map_keys : ('a, _, comparator_witness) Base.Map.t -> 'a t
val quickcheck_generator : 'a Quickcheck.Generator.t -> 'a t Quickcheck.Generator.t
end
module type Creators2 = sig
include Set.Creators2
val of_hash_set : 'a Hash_set.t -> ('a, 'cmp) t
val of_hashtbl_keys : ('a, _) Hashtbl.t -> ('a, 'cmp) t
val of_map_keys : ('a, _, 'cmp) Base.Map.t -> ('a, 'cmp) t
val quickcheck_generator
: 'a Quickcheck.Generator.t
-> ('a, 'cmp) t Quickcheck.Generator.t
end
module type Creators2_with_comparator = sig
include Set.Creators2_with_comparator
val of_hash_set : comparator:('a, 'cmp) Comparator.t -> 'a Hash_set.t -> ('a, 'cmp) t
val of_hashtbl_keys
: comparator:('a, 'cmp) Comparator.t
-> ('a, _) Hashtbl.t
-> ('a, 'cmp) t
val of_map_keys : ('a, _, 'cmp) Base.Map.t -> ('a, 'cmp) t
val quickcheck_generator
: comparator:('a, 'cmp) Comparator.t
-> 'a Quickcheck.Generator.t
-> ('a, 'cmp) t Quickcheck.Generator.t
end
module Check_creators
(T : T2)
(Tree : T2)
(Elt : T1)
(Cmp : T1)
(Options : T3)
(_ : Creators_generic
with type ('a, 'b, 'c) options := ('a, 'b, 'c) Options.t
with type ('a, 'b) t := ('a, 'b) T.t
with type ('a, 'b) tree := ('a, 'b) Tree.t
with type 'a elt := 'a Elt.t
with type 'cmp cmp := 'cmp Cmp.t) =
struct end
module Check_creators0 (M : Creators0) =
Check_creators
(struct
type ('a, 'b) t = M.t
end)
(struct
type ('a, 'b) t = M.tree
end)
(struct
type 'a t = M.elt
end)
(struct
type 'cmp t = M.comparator_witness
end)
(Without_comparator)
(M)
module Check_creators1 (M : Creators1) =
Check_creators
(struct
type ('a, 'b) t = 'a M.t
end)
(struct
type ('a, 'b) t = 'a M.tree
end)
(struct
type 'a t = 'a
end)
(struct
type 'cmp t = M.comparator_witness
end)
(Without_comparator)
(M)
module Check_creators2 (M : Creators2) =
Check_creators
(struct
type ('a, 'b) t = ('a, 'b) M.t
end)
(struct
type ('a, 'b) t = ('a, 'b) M.tree
end)
(struct
type 'a t = 'a
end)
(struct
type 'cmp t = 'cmp
end)
(Without_comparator)
(M)
module Check_creators2_with_comparator (M : Creators2_with_comparator) =
Check_creators
(struct
type ('a, 'b) t = ('a, 'b) M.t
end)
(struct
type ('a, 'b) t = ('a, 'b) M.tree
end)
(struct
type 'a t = 'a
end)
(struct
type 'cmp t = 'cmp
end)
(With_comparator)
(M)
module type Creators_and_accessors_generic = sig
include Accessors_generic
include
Creators_generic
with type ('a, 'b, 'c) options := ('a, 'b, 'c) options
with type ('a, 'b) t := ('a, 'b) t
with type ('a, 'b) tree := ('a, 'b) tree
with type 'a elt := 'a elt
with type 'cmp cmp := 'cmp cmp
end
module type Creators_and_accessors0 = sig
include Accessors0
include
Creators0
with type t := t
with type tree := tree
with type elt := elt
with type comparator_witness := comparator_witness
end
module type Creators_and_accessors1 = sig
include Accessors1
include
Creators1
with type 'a t := 'a t
with type 'a tree := 'a tree
with type comparator_witness := comparator_witness
end
module type Creators_and_accessors2 = sig
include Accessors2
include
Creators2 with type ('a, 'b) t := ('a, 'b) t with type ('a, 'b) tree := ('a, 'b) tree
end
module type Creators_and_accessors2_with_comparator = sig
include Accessors2_with_comparator
include
Creators2_with_comparator
with type ('a, 'b) t := ('a, 'b) t
with type ('a, 'b) tree := ('a, 'b) tree
end
module Make_S_plain_tree (Elt : Comparator.S) = struct
module type S = sig
type t = (Elt.t, Elt.comparator_witness) Tree.t [@@deriving compare, sexp_of]
type named = (Elt.t, Elt.comparator_witness) Tree.Named.t
include
Creators_and_accessors0
with type ('a, 'b) set := ('a, 'b) Tree.t
with type t := t
with type tree := t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
module Provide_of_sexp
(Elt : sig
type t [@@deriving of_sexp]
end
with type t := Elt.t) : sig
type t [@@deriving of_sexp]
end
with type t := t
end
end
module type S_plain = sig
module Elt : sig
type t [@@deriving sexp_of]
include Comparator.S with type t := t
end
type t = (Elt.t, Elt.comparator_witness) Base.Set.t [@@deriving compare, sexp_of]
type named = (Elt.t, Elt.comparator_witness) Named.t
include
Creators_and_accessors0
with type ('a, 'b) set := ('a, 'b) Base.Set.t
with type t := t
with type tree := (Elt.t, Elt.comparator_witness) Tree.t
with type elt := Elt.t
with type named := named
with type comparator_witness := Elt.comparator_witness
module Provide_of_sexp
(Elt : sig
type t [@@deriving of_sexp]
end
with type t := Elt.t) : sig
type t [@@deriving of_sexp]
end
with type t := t
module Provide_bin_io
(Elt : sig
type t [@@deriving bin_io]
end
with type t := Elt.t) : Binable.S with type t := t
module Provide_hash (Elt : Hasher.S with type t := Elt.t) : sig
type t [@@deriving hash]
end
with type t := t
end
module type S = sig
module Elt : sig
type t [@@deriving sexp]
include Comparator.S with type t := t
end
include S_plain with module Elt := Elt
include Sexpable.S with type t := t
end
module type S_binable = sig
module Elt : sig
type t [@@deriving sexp, bin_io]
include Comparator.S with type t := t
end
include S with module Elt := Elt
include Binable.S with type t := t
end