package ambient-context

  1. Overview
  2. Docs
Abstraction over thread-local / continuation-local storage mechanisms for communication with transitive dependencies

Install

dune-project
 Dependency

Authors

Maintainers

Sources

ambient-context-0.1.1.tbz
sha256=069907679bb58548d21236de31dd96b9cd94361b764fe0c6b06a5149d14098a8
sha512=519c47993a89fa8b4ab2b5d9dd63b0b80a2a0831fcad2af1ac413e4682435407a9a7c73524706e8ef5d65582ba01097ca20c93e1b8be2f8c556e70dac0a8de00

doc/ambient-context.unix/Ambient_context/index.html

Module Ambient_contextSource

include module type of struct include Ambient_context_core.Types end
Sourcetype storage = (module STORAGE)
Sourcetype 'a key = int * 'a Hmap.key
Sourceval debug : bool
Sourceval id : int Atomic.t
Sourceval generate_debug_id : unit -> int
Sourceval compare_key : int -> int -> int
Sourceval current_storage_key : storage TLS.t
Sourceval get_current_storage : unit -> Ambient_context_core.Types.storage
Sourceval create_key : unit -> int * 'a Ambient_context_core.Ambient_context_hmap.key
Sourceval get : (int * 'a Ambient_context_core.Ambient_context_hmap.key) -> 'a option
Sourceval with_binding : 'a key -> 'a -> (unit -> 'r) -> 'r
Sourceval without_binding : (int * 'a Ambient_context_core.Ambient_context_hmap.key) -> (unit -> 'b) -> 'b
Sourceval set_storage_provider : Ambient_context_core.Types.storage -> unit