You can search for identifiers within the package.
in-package search v0.2.0
type t =
| Integer of int
| String of string
| List of t list
| Dict of (string * t) list
type src = [
| `Channel of in_channel
| `File_path of string
| `String of string
]
type dst = [
| `Buffer of Buffer.t
| `Channel of out_channel
val eq : t -> t -> bool
val hash : t -> int
val dict_of_list : (string * t) list -> t
val pretty_print : t -> string
val decode : [< src ] -> t
val encode : [< dst ] -> t -> unit
val encode_to_string : t -> string
type !'a sequence = ('a -> unit) -> unit
val decode_seq : [< src ] -> t sequence
val encode_seq : [< dst ] -> t sequence -> unit
val as_string : t -> string option
val as_int : t -> int option
val as_list : t -> t list option
val as_dict : t -> (string * t) list option
val dict_get : t -> string -> t option