Frama-C:
Plug-ins:
Libraries:

Frama-C API - Computation

The monad used to encode context dependent computations.

type context = Context.t
include Frama_c_kernel.Monad.S_with_product with type 'a t = 'a Model.Computation.t
type 'a t = 'a Model.Computation.t
val return : 'a -> 'a t
val flatten : 'a t t -> 'a t
val map : ('a -> 'b) -> 'a t -> 'b t
val bind : ('a -> 'b t) -> 'a t -> 'b t
val product : 'a t -> 'b t -> ('a * 'b) t
module Bool : sig ... end
module Option : sig ... end
module List : sig ... end
module Operators : sig ... end
val resolve : context -> 'a t -> 'a