package coq

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. read_cmd : unit -> Action.t;
    (*

    request a debugger command from the client

    *)
  2. submit_answer : Answer.t -> unit;
    (*

    receive a debugger answer from Ltac

    *)
  3. isTerminal : bool;
    (*

    whether the debugger is running as a terminal (non-visual)

    *)
}
val set : t -> unit
val get : unit -> t option