package async_unix

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type 'a t =
  1. | Never : unit t
  2. | Immediately : unit t
  3. | After : Core.Time_ns.Span.t t
val variant_of : 'a. 'a t -> 'a -> [ `After of Core.Time_ns.Span.t | `Immediately | `Never ]