1MoreLabels.Set.OrderedType(3) OCaml library MoreLabels.Set.OrderedType(3)
2
3
4
6 MoreLabels.Set.OrderedType - no description
7
9 Module type MoreLabels.Set.OrderedType
10
12 Module type OrderedType
13 = Set.OrderedType
14
15
16
17
18
19
20
21 type t
22
23
24 The type of the set elements.
25
26
27
28 val compare : t -> t -> int
29
30 A total ordering function over the set elements. This is a two-argu‐
31 ment function f such that f e1 e2 is zero if the elements e1 and e2 are
32 equal, f e1 e2 is strictly negative if e1 is smaller than e2 , and f e1
33 e2 is strictly positive if e1 is greater than e2 . Example: a suitable
34 ordering function is the generic structural comparison function Perva‐
35 sives.compare .
36
37
38
39
40
41OCamldoc 2018-07-14 MoreLabels.Set.OrderedType(3)