Frama-C API - Identity
The identity monad, i.e a monad that encodes no effect.
include Monad.S_with_product with type 'a t = 'a
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 List : sig ... end