Doc.Value
Documenentation for values.
val string_of_flag : flag -> string
type source = [
| `Input
| `Output
| `Conversion
| `FFmpegFilter
| `Track
| `Audio
| `Video
| `MIDI
| `Visualization
| `Synthesis
| `Testing
| `Fade
| `Liquidsoap
]
Kind of source.
val categories : (category * string) list
val string_of_category : category -> string
val category_of_string : string -> category option
type t = {
typ : string;
category : category;
flags : flag list;
description : string;
examples : string list;
arguments : (string option * argument) list;
methods : (string * meth) list;
}
Documentation for a function.
val add : string -> t Stdlib.Lazy.t -> unit
val print_functions : (Map.key -> unit) -> unit
Only print function names.
val colorize : Console.text_style list -> string -> string
val print : Map.key -> (string -> unit) -> unit
val to_json : unit -> Json.t