Module

Control.Comonad.Traced.Trans

Package
purescript-transformers
Repository
purescript/purescript-transformers

This module defines the cowriter comonad transformer, TracedT.

#TracedT Source

newtype TracedT t w a

The cowriter comonad transformer.

This comonad transformer extends the context of a value in the base comonad so that the value depends on a monoidal position of type t.

The ComonadTraced type class describes the operations supported by this comonad.

Constructors

Instances

#runTracedT Source

runTracedT :: forall t a w. TracedT t w a -> w (t -> a)

Unwrap a value in the TracedT comonad.