package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. memory_reference : string;
    (*

    Memory reference to the base location from which data should be read.

    *)
  2. offset : int option;
    (*

    Optional offset (in bytes) to be applied to the reference location before reading data. Can be negative.

    *)
  3. count : int;
    (*

    Number of bytes to read at the specified location and offset.

    *)
}

Arguments for 'readMemory' request.

val make : memory_reference:string -> ?offset:int option -> count:int -> unit -> t
val to_yojson : t -> Yojson.Safe.t