package melange-compiler-libs

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Melange_compiler_libs.SwitchSource

Sourcetype 'a shared =
  1. | Shared of 'a
  2. | Single of 'a
Sourcetype ('a, 'ctx) t_store = {
  1. act_get : unit -> 'a array;
  2. act_get_shared : unit -> 'a shared array;
  3. act_store : 'ctx -> 'a -> int;
  4. act_store_shared : 'ctx -> 'a -> int;
}
Sourcemodule type Stored = sig ... end
Sourcemodule type CtxStored = sig ... end
Sourcemodule CtxStore (A : CtxStored) : sig ... end
Sourcemodule Store (A : Stored) : sig ... end
Sourcemodule type S = sig ... end
Sourcemodule Make (Arg : S) : sig ... end