You can search for identifiers within the package.
in-package search v0.2.0
type t = private {
id : int;
user : User.t;
body : string;
}
The type for comments.
val v : id:int -> user:User.t -> body:string -> t
v ~id ~user ~body is a comment done by user saying body.
v ~id ~user ~body
user
body
val id : t -> int
id t is t's ID, e.g. the appearance order in the comment list.
id t
t
val user : t -> User.t
user t is t's user.
user t
val body : t -> string
body t is t's body.
body t
val pp : t Fmt.t
pp is the pretty-printer for comments.
pp