You can search for identifiers within the package.
in-package search v0.2.0
type image = Image_t.image = {
height : int;
url : string;
width : int;
}
val write_image : Stdlib.Buffer.t -> image -> unit
Output a JSON value of type image.
image
val string_of_image : ?len:int -> image -> string
Serialize a value of type image into a JSON string.
specifies the initial length of the buffer used internally. Default: 1024.
val read_image : Yojson.Safe.lexer_state -> Stdlib.Lexing.lexbuf -> image
Input JSON data of type image.
val image_of_string : string -> image
Deserialize JSON data of type image.