package memtrace_viewer

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
module Location : sig ... end
module Backtrace : sig ... end
module Graph : sig ... end
module Entry : sig ... end
module Orientation : sig ... end
module Fragment : sig ... end
module Fragment_trie : sig ... end
module type Suffix_tree = Fragment_trie.Suffix_tree
module Info : sig ... end
type t = {
  1. graph : Graph.t;
  2. filtered_graph : Graph.t option;
  3. trie : Fragment_trie.t;
  4. total_allocations_unfiltered : Core.Byte_units.t;
  5. hot_paths : Fragment.t list;
  6. hot_call_sites : Fragment.t list;
  7. info : Info.t option;
}
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0.Sexp.t -> t
val sexp_of_t : t -> Sexplib0.Sexp.t
val empty : t
module Serialized : sig ... end