package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. start_module : int option;
    (*

    The index of the first module to return; if omitted modules start at 0.

    *)
  2. module_count : int option;
    (*

    The number of modules to return. If moduleCount is not specified or 0, all modules are returned.

    *)
}

Arguments for 'modules' request.

val make : ?start_module:int option -> ?module_count:int option -> unit -> t
val to_yojson : t -> Yojson.Safe.t