package liquidsoap-lang

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Liquidsoap_lang.DocSource

Sourcemodule Map : sig ... end
Sourcemodule Plug : sig ... end

Documentation for plugs.

Sourcemodule Value : sig ... end

Documenentation for values.

Sourcetype doc_type = [
  1. | `Full
  2. | `Argsof of string list
]
Sourcetype doc = {
  1. main : string list;
  2. special : [ `Category of string | `Flag of string ] list;
  3. params : (string option * string) list;
  4. methods : (string * string) list;
  5. callbacks : (string * string) list;
}
Sourceval parse_doc : pos:Pos.t -> string -> Value.t option