package carton-git

  1. Overview
  2. Docs
module type STORE = sig ... end
module type IO = sig ... end
type ('path, 'fd, 'uid) t
type 'fd buffers = {
  1. z : Bigstringaf.t;
  2. allocate : int -> De.window;
  3. w : 'fd Carton.Dec.W.t;
}
module Make (Scheduler : Carton.SCHEDULER) (IO : IO with type +'a t = 'a Scheduler.s) (Store : STORE with type +'a fiber = 'a Scheduler.s) (Uid : Carton.UID) : sig ... end