You can search for identifiers within the package.
in-package search v0.2.0
ocb
style.ml
1 2 3 4 5 6 7 8 type t = | Classic | Flat let of_string = function | "classic" -> Classic | "flat" -> Flat | s -> failwith @@ Format.sprintf "unknown style `%s`" s
1 2 3 4 5 6 7 8
type t = | Classic | Flat let of_string = function | "classic" -> Classic | "flat" -> Flat | s -> failwith @@ Format.sprintf "unknown style `%s`" s