package merlin-lib

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Directive : sig ... end
type directive = Directive.Processed.t
module Commands : sig ... end
type read_error =
  1. | Unexpected_output of string
  2. | Csexp_parse_error of string
val read : in_channel:in_channel -> (directive list, read_error) Merlin_utils.Std.Result.t

read inc reads one csexp from the channel inc and returns the list of directives it represents

val write : out_channel:out_channel -> directive list -> unit