You can search for identifiers within the package.
in-package search v0.2.0
oenv
errors.ml
1 2 3 4 5 6 7 8 9 10 let pp_exn ppf ex = Format.fprintf ppf "%s" @@ Printexc.to_string ex let equal_exn = ( = ) type t = [ `Missing of string | `Nested_optional of string | `Parse of string * string | `Exn of exn ] [@@deriving show, eq]
1 2 3 4 5 6 7 8 9 10
let pp_exn ppf ex = Format.fprintf ppf "%s" @@ Printexc.to_string ex let equal_exn = ( = ) type t = [ `Missing of string | `Nested_optional of string | `Parse of string * string | `Exn of exn ] [@@deriving show, eq]