You can search for identifiers within the package.
in-package search v0.2.0
csexp
Make.Input
type t
Type of an input source.
module Monad : sig ... end
Monad wrapping values returned by the input source
val read_string : t -> int -> (string, string) Result.t Monad.t
read_string source size reads exactly size bytes from source and return them as a string. Reaching the end of the input before size bytes have been read is an Error.
read_string source size
size
source
Error
val read_char : t -> (char, string) Result.t Monad.t
read_char source is read_string source 1, except the result is returned as a single character.
read_char source
read_string source 1