Module Mavryk_protocol_environment_001_PtAtLas.Either
type (!'a, !'b) t = ('a, 'b) Stdlib.Either.t =
| Left of 'a
| Right of 'b
val equal :
left:('a -> 'a -> bool) ->
right:('b -> 'b -> bool) ->
('a, 'b) t ->
('a, 'b) t ->
bool
val compare :
left:('a -> 'a -> int) ->
right:('b -> 'b -> int) ->
('a, 'b) t ->
('a, 'b) t ->
int