package trace

  1. Overview
  2. Docs
A stub for tracing/observability, agnostic in how data is collected

Install

dune-project
 Dependency

Authors

Maintainers

Sources

trace-0.9.1.tbz
sha256=9739d5f46becb407e96943f4f0d6d0919e03c14299ab9c2ddbb8d46b6f7a3ea4
sha512=500230dedc834cbb8535a1624408c2f0e67683bacef5e4a55b7639c4013f6247d3aa4cbc56b61810d0138f736c1245b6b334bd3991c2e86d03faee47b729c547

doc/trace.core/Trace_core/Meta_map/index.html

Module Trace_core.Meta_mapSource

Sourcemodule type KEY_IMPL = sig ... end
Sourcemodule Key : sig ... end
Sourcetype 'a key = 'a Key.t
Sourcetype binding =
  1. | B : 'a Key.t * 'a -> binding
Sourcemodule M : sig ... end
Sourcetype t = {
  1. m : exn_pair M.t;
}
Sourceval empty : t
Sourceval mem : (module KEY_IMPL with type t = 'a) -> t -> bool
Sourceval find_exn : 'a Key.t -> t -> 'a
Sourceval find : 'a Key.t -> t -> 'a option
Sourceval add : 'a Key.t -> 'a -> t -> t
Sourceval remove : 'a Key.t -> t -> t
Sourceval cardinal : t -> int
Sourceval length : t -> int
Sourceval iter : (binding -> unit) -> t -> unit
Sourceval to_list : t -> binding list
Sourceval add_list : t -> binding list -> t