Module Sequence.Merge_with_duplicates_element
type ('a, 'b) t =
| Left of 'a
| Right of 'b
| Both of 'a * 'b
val compare :
('a -> 'a -> int) ->
('b -> 'b -> int) ->
('a, 'b) t ->
('a, 'b) t ->
int
val compare__local :
('a -> 'a -> int) ->
('b -> 'b -> int) ->
('a, 'b) t ->
('a, 'b) t ->
int
val equal :
('a -> 'a -> bool) ->
('b -> 'b -> bool) ->
('a, 'b) t ->
('a, 'b) t ->
bool
val equal__local :
('a -> 'a -> bool) ->
('b -> 'b -> bool) ->
('a, 'b) t ->
('a, 'b) t ->
bool