File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 55
55
56
56
let comparableU
57
57
(type key )
58
- ~ cmp
58
+ cmp
59
59
=
60
60
let module N = MakeComparable (struct
61
61
type t = key
@@ -64,8 +64,8 @@ let comparableU
64
64
(module N : Comparable with type t = key )
65
65
66
66
67
- let comparable ~ cmp =
68
- comparableU ~cmp: (fun[@ bs] a b -> cmp a b)
67
+ let comparable cmp =
68
+ comparableU (fun[@ bs] a b -> cmp a b)
69
69
70
70
module type Hashable = sig
71
71
type identity
Original file line number Diff line number Diff line change @@ -76,11 +76,11 @@ type ('key, 'id) comparable =
76
76
*)
77
77
78
78
val comparableU :
79
- cmp : ('a -> 'a -> int [@ bs]) ->
79
+ ('a -> 'a -> int [@ bs]) ->
80
80
(module Comparable with type t = 'a )
81
81
82
82
val comparable :
83
- cmp : ('a -> 'a -> int ) ->
83
+ ('a -> 'a -> int ) ->
84
84
(module Comparable with type t = 'a )
85
85
86
86
module type Hashable = sig
You can’t perform that action at this time.
0 commit comments