Frama-C API - S
module type of an RWS monad
Standard monad functions and types
execute state monad with initial environment env and initial state state
Reader monad
val with_env : (env -> env) -> 'a t -> 'a trun a sub-computation using a modified Reader value
Writer monad
val write : out -> unit tsend a value to the Writer side-channel
State monad
obtain the current value of the State variable
set a new value for the State variable
modify the current value of the State variable by applying a function