You can search for identifiers within the package.
in-package search v0.2.0
type followers = Followers_t.followers = {
href : string option;
total : int;
}
val write_followers : Stdlib.Buffer.t -> followers -> unit
Output a JSON value of type followers.
followers
val string_of_followers : ?len:int -> followers -> string
Serialize a value of type followers into a JSON string.
specifies the initial length of the buffer used internally. Default: 1024.
val read_followers : Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> followers
Input JSON data of type followers.
val followers_of_string : string -> followers
Deserialize JSON data of type followers.