Monad transformers are an abstraction for combining monads. This allows you to compose different computational effects, building up precisely controlled computational environments.

learn more… | top users | synonyms

2
votes
1answer
64 views

How to I convert between monad stacks with transformers in scalaz 7

I'm struggling with understanding monad stacks and monad transformers with Scalaz7. I feel I'm pretty close to the answer but just can't get my head around a particular step. The following code ...
8
votes
1answer
97 views

Monad transformers monad duplication

I am new to monad transformers, so sorry easy question. I have value val :: MaybeT IO String and function fn :: String -> IO [String]. So after binding, I have val >>= liftM fn :: MaybeT IO ...
7
votes
1answer
146 views

Is there a free proxy transformer?

Do you think a free proxy transformer is possible? Something like data FreePT f p a' a b' b m r = .... instance (Proxy p,Functor f) => Proxy (FreePT f p) where .... instance (Functor f) ...
1
vote
1answer
88 views

How to lift function to transformed monad in haskell?

I know with the data constructor and the run*** function, I can lift any function to a specific MonadTrans instance. Like this, import Control.Monad.Trans import Control.Monad.Trans.Maybe import ...
0
votes
1answer
91 views

How to implement the MonadState class without using record syntax?

I find it difficult for me to understand the MonadState . The reason maybe most of the examples mixing up with record syntax in their data structure. So, I tried to implement the MonadState without ...
1
vote
2answers
85 views

Repeating a monadic computation multiple times and printing out results? (MonadRandom)

Right now I'm using the MonadRandom library. I have a computation: metroChain :: (RandomGen g) => Rand g Double I'd like to perform it multiple times, and sequentially print out the results. Or ...
12
votes
2answers
269 views

How to design a monadic stack?

how do you design and build your monadic stacks? For the first time I need to build a monadic stack (using transformers) to solve a real world problem, but I'm not thoroughly sure in which order stack ...
10
votes
0answers
241 views

Monad transformer for NonEmptyList?

It seems to me that Scalaz' NonEmptyList has a monad instance, so a monad transformer for it (a bit similar to ListT) should be possible. Is that correct? If so, is there one out there? (I couldn't ...
6
votes
1answer
98 views

Pattern match against value in monad

I got following data type in haskell: data Flow a = Continue a | Return Value newtype FlowT m a = FlowT {runFlowT :: m (Flow a)} type IStateM a = FlowT (StateT IState IO) a where IState is some ...
6
votes
1answer
125 views

How do you reason about the order of execution of functions in a monadT stack?

General theme: While I find the idea of stacking monads together is very appealing, I am having a lot of trouble picturing how the code is executed, and what are the appropriate orders to run the ...
4
votes
1answer
160 views

Scala: Bad inferred type for Option composed with StateT monad transformer

I'm somewhat familiar with Haskell monad transformers, but new to Scalaz (version 7). I made (what I thought was) a straightforward translation from the following Haskell code: import ...
1
vote
1answer
77 views

How do you stack two ErrorT monad transformers on top of each other?

Let's say I have these two functions: errorm :: ( MonadError String m ) => Bool -> m Int errorm cond = if cond then return 1 else throwError "this is an error" errorms :: ( MonadError String ...
3
votes
0answers
99 views

How best to type “Any monad transformer stack containing m”

I'd like to write the function fixProxy :: (Monad m, Proxy p) => (b -> m b) -> b -> () -> p a' a () b m r fixProxy f a () = runIdentityP $ do v <- respond a a' <- lift (f a) ...
8
votes
1answer
175 views

What is the idiomatic way to call pure functions within a MaybeT ( StateT ) monadT stack such that error propagates?

Concretely, let's say I have this monadT stack: type MHeap e ret = MaybeT ( StateT [e] Identity ) ret and a runMheap function for convience: runMheap :: MHeap e ret -> [e] -> ( Maybe ret, ...
7
votes
1answer
139 views

Why don't you need to use 'lift' when interacting with a nested StateT monadT in this case?

Let's say I have a monadT: type Wrap a = ReaderT Env ( StateT Int ( StateT Int Identity ) ) a The important thing to note here is that one StateT is wrapping another, and both are wrapped inside a ...
0
votes
1answer
136 views

Could someone de-sugar this monad transform snippet?

Written in this handy do-notation, this seems pretty clear to me. But I can't seem to get the de-sugared version using >>= to work which is worrisom. Could someone re-write these in expanded ...
7
votes
1answer
102 views

What language extensions does the MTL library require?

I'm trying to understand monad transformers by implementing my own tiny library based on the designs of existing ones. What I'm stuck on is the language extensions. In MonadError, the only ...
2
votes
2answers
125 views

Parameterized Maybe monad

I'm making a mess with Monad, ReaderT, ... to perform a "simple?" behavior. I want to intersperse a test function into Maybe transformation (Maybe or another personalized monad). Exactly, I want ...
12
votes
1answer
290 views

What is the point of having a lazy/strict version of Writer?

Why are there two different Writer-type monads in Haskell? Intuitively to me, reading "strict writer monad" means that the <> is strict, so that there's no thunk buildup in the log. However, ...
2
votes
2answers
184 views

How does EitherT work?

I spend half of my day trying to figure out how to use EitherT as a way to deal with errors in my code. I have defined a transformer stack like this. -- Stuff Monad data StuffConfig = StuffConfig { ...
0
votes
1answer
62 views

MaybeT Compile Errors

The error: maybet.hs:8:14: Couldn't match expected type `MaybeT m0 t0' with actual type `Maybe a0' In the return type of a call of `M.lookup' In a stmt of a 'do' ...
9
votes
1answer
220 views

Difference between Haskell ListT, LogicT and ChoiceT

What is the difference between these three monad transformers? ListT LogicT ChoiceT
15
votes
1answer
383 views

What is Control.Applicative.Lift useful for?

I wrote about transformers in a recent blog post, and someone asked "what do people use Control.Applicative.Lift for?" I wasn't able to answer this, so I echo the question to StackOverflow - what is ...
4
votes
1answer
109 views

How to combine multiple nonstandard transformers with class constraints together into one stack?

This is going to be a long one because I'm not sure that I went into this in the right frame of mind, so I'm going to outline my thinking as clearly as possible at each step of the way. I've got two ...
3
votes
1answer
104 views

Defining MonadPlus instance for a transformer on top of ErrorT

I would like define a monad transformer, that, among other things, endows a base monad with error functionality. The transformed monad should be an instance of MonadPlus if the base monad is, but I ...
0
votes
2answers
119 views

Building a nondeterministic monad transformer in haskell

I would like to build a nondeterministic monad transformer in haskell that, I believe, behaves differently from ListT and from the alternative ListT proposed at ...
3
votes
1answer
240 views

Scalaz - combining List and State Monad in for comprehension

I am planning to start using Monadic style in my Scala code for, amongst others, threading state. Here's a simplified example of combining 3 monadic functions (and caring only about the side effects) ...
3
votes
2answers
195 views

Working with Maybe a, IO a, and MaybeT IO a

I'm writing a prompt - response style system with a bunch of various combinations of Maybe a, IO a, and MaybeT IO a, and there is a lof of stuff to take into account. Some IO actions for which there ...
2
votes
1answer
98 views

How to restrict backtracking in a monad transformer parser combinator

tl;dr, How do I implement parsers whose backtracking can be restricted, where the parsers are monad transformer stacks? I haven't found any papers, blogs, or example implementations of this approach; ...
1
vote
1answer
47 views

How to correctly qualify types for working with the (transformed) ST and random monads

Here is my code: ... import System.Random ( RandomGen, next, split ) import qualified Data.Array.MArray as MAI import Data.Array.ST.Safe( STUArray ) import Control.Monad.ST.Safe(ST) import qualified ...
10
votes
1answer
224 views

Why aren't monad transformers constrained to yield monads?

In the MonadTrans class: class MonadTrans t where -- | Lift a computation from the argument monad to the constructed monad. lift :: Monad m => m a -> t m a why isn't t m constrained ...
5
votes
1answer
228 views

Anatomy of a monad transformer

I'm trying to learn monad transformers, based on the standard Haskell libraries (mtl? transformers? not sure which one came with my download of the Haskell platform - 7.4.1). What I believe I've ...
3
votes
1answer
82 views

Correct way to define and use StateT along different “return type” functions

Let State' be my program state with some data. type State' m a = StateT Int m a I would use it in some computations. Examples: -- genData, return some string (using Int value and State') genData ...
19
votes
2answers
624 views

Why is there no IO transformer in Haskell?

Every other monad comes with a transformer version, and from what I know the idea of a transformer is a generic extension of monads. Following how the other transformers are build, IOT would be ...
4
votes
1answer
124 views

Creating a Combination of a Reader and Maybe Monad (Applicative Functor)

What I would like to do is make an Applicative Functor out of the Reader monad that does something like this: data MyData = Int Int get2Sum :: Reader [Int] Int get2Sum = do myData <- ask ...
9
votes
2answers
468 views

Modular Program Design - Combining Monad Transformers in Monad Agnostic functions

I am trying to come up with a modular program design and I, once again, kindly request your help. As a follow-up to these following posts Monad Transformers vs passing Parameters and Large Scale ...
28
votes
1answer
845 views

Monad Transformers vs Passing parameters to functions

I am new to Haskell but understand how Monad Transformers can be used. Yet, I still have difficulties grabbing their claimed advantage over passing parameters to function calls. Based on the wiki ...
0
votes
1answer
86 views

WAI application works ghci but not with runhaskell

I have written a simple WAI application, which uses a ReaderT to allow access to the request like so: import qualified Network.Wai as W handle :: (Resource a) => a -> ReaderT W.Request IO ...
2
votes
1answer
236 views

How to use Scalaz 7's EitherT with liftM

If I have a monad transformer type taking two type arguments, I can use liftM to lift values into the transformed monad: scala> val o = 1.point[List].liftM[OptionT] o: scalaz.OptionT[List,Int] = ...
6
votes
2answers
288 views

Example of large Monad stack

As the title says, I'm looking for a program that uses monad-transformers in combination with a large stack of Monads. Does anybody know a real-world example?
0
votes
1answer
147 views

Stitching functions together using the ReaderT and StateT Monads

I am beginning with Haskell and I need help stitching functions together using the ReaderT and StateT Monads. Ideally, if that is at all possible, all functions would have the same signature (which I ...
14
votes
1answer
512 views

Why is ListT monad transformer considered buggy - what monad laws it breaks?

I've seen mentioned that ListT is a classic example of a buggy monad transformer that doesn't satisfy the monad laws. Can this be demonstrated by a simple example? Edit: My idea with ListT [] ...
8
votes
4answers
262 views

Examples of Haskell Applicative Transformers

The wiki on www.haskell.org tells us the following about Applicative Transformers: So where are applicative transformers? The answer is, that we do not need special transformers for applicative ...
17
votes
1answer
536 views

Threading extra state through a parser in Scala

I'll give you the tl;dr up front I'm trying to use the state monad transformer in Scalaz 7 to thread extra state through a parser, and I'm having trouble doing anything useful without writing a lot ...
3
votes
5answers
316 views

Print list elements in new lines

I'm just totally confused with lists and monads, so maybe my question isn't correct or very naive. I've seen the way to do it using mapM_ func here: mapM_ print [1, 2, 3, 4] But I don't know ...
12
votes
2answers
428 views

Do monad transformers apply to getting JSON from services?

I have a Play! 2 for Scala application that needs to retrieve some data in JSON format from an external service. The Play! framework allows to make HTTP requests asynchronously by wrapping the ...
2
votes
3answers
200 views

Scala simplify nested monads

I have some code written in Lift. Basically its nested Box (similar monad to Option). I'd like to simplify it a little bit if possible. Preferably add type parameter so this could be easily changed to ...
2
votes
1answer
134 views

How to specify the return type of a function to be a (arbitrary) monad?

In short, I want to declare a trait like this: trait Test { def test(amount: Int): A[Int] // where A must be a Monad } so that I can use it without knowing what monad that A is, like: class ...
10
votes
1answer
260 views

Is access to the internal structure of a monad required for a monad transformer?

Is it necessary to have access to the internal structure of a monad to write the monad transformer? For example: I'd like to have GetT - transformer for Get monad from Data.Binary.Get, but this ...
4
votes
1answer
165 views

Haskell - How to construct a program which will read some setting files?

According to the introduction about ReaderT , I can only find: ReaderT Env IO String And it means ...is a computation which involves reading values from some environment of type Env (the ...

1 2 3