Writer.OverSourcemodule Tape : Preface_specs.MONOIDtype tape = Tape.tThe encapsulated tape.
tell helps to enrich the output. This is done thanks to the semigroup combine operation.
listen executes the effect and return both the result and the corresponding output within the effect.
Performs the action and adds the result of applying the function to the output to the value of the computation.
pass executes the effect and apply the function to the corresponding output.
censor executes the effects, apply the function to the corresponding output and returns an effects with the value unchanged.
module Monad : Preface_specs.Monad.APIjoin remove one level of monadic structure, projecting its bound argument into the outer level.
val return : 'a -> 'a tCreate a new 'a t.
Composing monadic functions using Kleisli Arrow (from left to right).
Composing monadic functions using Kleisli Arrow (from right to left).
Mapping over from 'a and 'b to 'c over 'a t and 'b t to 'c t.
Mapping over from 'a and 'b and 'c to 'd over 'a t and 'b t and 'c t to 'd t.
Create a new 'a t, replacing all values in the 'b t by given a value of 'a.
module Infix : Preface_specs.Monad.INFIX with type 'a t := 'a tInfix version of OPERATION.compose_right_to_left.
Sequentially compose two actions, discarding any value produced by the first.
Sequentially compose two actions, discarding any value produced by the second.
Infix version of Preface_specs.Functor.CORE.map.
Flipped and infix version of Preface_specs.Functor.CORE.map.
Infix version of Preface_specs.Functor.OPERATION.replace.
Flipped and infix version of Preface_specs.Functor.OPERATION.replace.
module Syntax : Preface_specs.Monad.SYNTAX with type 'a t := 'a tSyntaxic shortcuts for flipped version of CORE.bind:
let* x = e in f is equals to bind (fun x -> f) e.
Syntaxic shortcuts for flipped version of CORE.map:
let+ x = e in f is equals to map (fun x -> f) e.
module Functor : Preface_specs.FUNCTOR with type 'a t = 'a tmodule Applicative : Preface_specs.APPLICATIVE with type 'a t = 'a t