= 768" x-on:close-sidebar="sidebar=window.innerWidth >= 768 && true">
ON THIS PAGE
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
Parameters
module C : CI_s.CONTEXT
Signature
include CI_s.TERM with type context = C.t and type 'a key = C.t -> 'a
type context = C.t
type 'a key = C.t -> 'a
val return : 'a -> 'a t
val fail : ('a, Format.formatter, unit, 'b t) Pervasives.format4 -> 'a
val pending : ('a, Format.formatter, unit, 'b t) Pervasives.format4 -> 'a
val state :
'a t ->
('a, [ `Pending of string | `Failure of string ]) Pervasives.result t
val of_state :
('a, [< `Pending of string | `Failure of string ]) Pervasives.result ->
'a t
val catch : 'a t -> ('a, [ `Failure of string ]) Pervasives.result t
val of_lwt_slow : (unit -> 'a CI_s.status Lwt.t) -> 'a t
module Infix : sig ... end
val run : context -> 'a t -> ('a CI_result.t * CI_output.logs) Lwt.t
run context term
is the result of evaluating term
in context
.
ON THIS PAGE