package lsp

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
val parse_string : string -> (Sexp.t, int * string) Stdlib.result
val parse_string_many : string -> (Sexp.t list, int * string) Stdlib.result
val input : Stdlib.in_channel -> (Sexp.t, string) Stdlib.result
val input_opt : Stdlib.in_channel -> (Sexp.t option, string) Stdlib.result
val input_many : Stdlib.in_channel -> (Sexp.t list, string) Stdlib.result
val serialised_length : Sexp.t -> int
val to_string : Sexp.t -> string
val to_buffer : Stdlib.Buffer.t -> Sexp.t -> unit
val to_channel : Stdlib.out_channel -> Sexp.t -> unit
module Parser : sig ... end
module type Input = sig ... end
module Make_parser (Input : Input) : sig ... end