ocaml-containers/src/core/CCEither.ml
Fardale 74b787f7e6 CCEither(cleanup): conditionnally use the Either module
Include the Either module when available (ocaml >= 4.12)
2026-02-06 10:44:54 +01:00

77 lines
1.5 KiB
OCaml

(* This file is free software, part of containers. See file "license" for more details. *)
type 'a iter = ('a -> unit) -> unit
type 'a equal = 'a -> 'a -> bool
type 'a ord = 'a -> 'a -> int
type 'a printer = Format.formatter -> 'a -> unit
[@@@ifge 4.12]
include Either
[@@@else_]
(** {2 Basics} *)
type ('a, 'b) t = ('a, 'b) Either.t =
| Left of 'a
| Right of 'b
let left l = Left l
let right r = Right r
let is_left = function
| Left _ -> true
| Right _ -> false
let is_right = function
| Left _ -> false
| Right _ -> true
let find_left = function
| Left l -> Some l
| Right _ -> None
let find_right = function
| Left _ -> None
| Right r -> Some r
let map_left f = function
| Left l -> Left (f l)
| Right r -> Right r
let map_right f = function
| Left l -> Left l
| Right r -> Right (f r)
let map ~left ~right = function
| Left l -> Left (left l)
| Right r -> Right (right r)
let fold ~left ~right = function
| Left l -> left l
| Right r -> right r
let iter = fold
let for_all = fold
let equal ~left ~right e1 e2 =
match e1, e2 with
| Left l1, Left l2 -> left l1 l2
| Right r1, Right r2 -> right r1 r2
| _ -> false
let compare ~left ~right e1 e2 =
match e1, e2 with
| Left _, Right _ -> -1
| Right _, Left _ -> 1
| Left l1, Left l2 -> left l1 l2
| Right r1, Right r2 -> right r1 r2
[@@@endif]
(** {2 IO} *)
let pp ~left ~right fmt = function
| Left l -> Format.fprintf fmt "Left@ (@[%a@])" left l
| Right r -> Format.fprintf fmt "Right@ (@[%a@])" right r