Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
2answers
1k views

mtl, transformers, monads-fd, monadLib, and the paradox of choice

Hackage has several packages for monad transformers: mtl: Monad transformer library transformers: Concrete functor and monad transformers monads-fd: Monad classes, using functional dependencies ...
23
votes
2answers
2k views

Goto in Haskell: Can anyone explain this seemingly insane effect of continuation monad usage?

From this thread (Control.Monad.Cont fun, 2005), Tomasz Zielonka introduced a function (commented in a clear and nice manner by Thomas Jäger). Tomasz takes the argument (a function) of a callCC body ...
19
votes
1answer
386 views

What are Haskell's monad transformers in categorical terms?

As a math student, the first thing I did when I learned about monads in Haskell was check that they really were monads in the sense I knew about. But then I learned about monad transformers and those ...
17
votes
6answers
2k views

Has anyone ever encountered a Monad Transformer in the wild?

In my area of business - back office IT for a financial institution - it is very common for a software component to carry a global configuration around, to log it's progress, to have some kind of ...
14
votes
3answers
305 views

Monad transformer for progress tracking

I am looking for a monad transformer that can be used to track the progress of a procedure. To explain how it would be used, consider the following code: procedure :: ProgressT IO () procedure = task ...
13
votes
2answers
1k views

Haskell: lift vs liftIO

In what situations should liftIO be used? When I'm using ErrorT String IO, the lift function works to lift IO actions into ErrorT, so liftIO seems superfluous.
13
votes
3answers
348 views

Why is my code using monadic lists from the List package so slow?

Last week user Masse asked a question about recursively listing files in a directory in Haskell. My first thought was to try using monadic lists from the List package to avoid building the entire list ...
11
votes
3answers
230 views

Working on permuted monad transformer stack

One of the problems with monad transformers I find is the need of lift-ing the operations into the right monad. A single lift here and there isn't bad, but sometimes there are functions that looks ...
11
votes
2answers
308 views

Trying to understand the types produced by monad transformers

The docs for Control.Monad.Trans.Error provide this example of combining two monads: type ErrorWithIO e a = ErrorT e IO a ==> ErrorT (IO (Either e a)) I find this counterintuitive: even though ...
10
votes
1answer
308 views

Monad transformers libraries - which one to use?

There are many different monad transformers libraries on Hackage. A few seem to get more attention than the others. To name a few: mtl (current version depending on transformers for some reason), ...
10
votes
3answers
403 views

What is the difference between different orderings of the same monad transformers?

I am attempting to define an API to express a particular type of procedure in my program. newtype Procedure a = { runProcedure :: ? } There is state, consisting of a mapping of IDs to records: ...
9
votes
1answer
129 views

Combine two monads when neither has a transformer?

I'm playing around with writing a web app. In this case, I'm using scotty and redis, but this problem comes up in any web/db combo. I used happstack before this, so I'd love an example there too. ...
9
votes
1answer
105 views

Writer implemented with Operational Monad does not work lazily

I wrote a monad with Writer functionality, using the Operational Monad approach. Then I noticed it does not work lazily. In the code below, there is a rogueWriter that performs infinitely many ...
9
votes
2answers
179 views

Odd results from monad transformer benchmark. A bug?

I did some Criterion benchmarks to estimate how much performance I lose by running my code over a monad stack. The results were rather curious, and I have probably stumbled upon some laziness pitfall ...
9
votes
2answers
1k views

Haskell Monad Transformer Stack and Type Signatures

I am attempting to create a stack of monad transformers and am having trouble getting the correct type signatures for my functions. (I'm still pretty new to Haskell) The stack combines multiple ...
9
votes
3answers
1k views

How do I combine monads in Haskell?

Particularly, I need to be able to combine the CGI monad with the IO monad, but an example of how to combine the IO monad with the Maybe monad might be even better...
8
votes
1answer
506 views

Tips for more elegant code with monads?

I finally got a hold on how to use monads (don't know if I understand them...), but my code is never very elegant. I guess is from a lack of grip on how all those functions on Control.Monad can really ...
7
votes
2answers
136 views

Existential types and monad transformers

Context: I'm trying to produce an error monad that also keeps track of a list of warnings, something like this: data Dangerous a = forall e w. (Error e, Show e, Show w) => Dangerous (ErrorT e ...
7
votes
1answer
130 views

scalaz List[StateT].sequence - could not find implicit value for parameter n: scalaz.Applicative

I'm trying to figure out how to use StateT to combine two State state transformers based on a comment on my Scalaz state monad examples answer. It seems I'm very close but I got an issue when trying ...
7
votes
1answer
207 views

Mixing Monads in Haskell

I'm trying to work with Ubigraph in haskell, but I believe my problem is more generic. I'm trying to compile: import Graphics.Ubigraph import Control.Monad import System.Posix.Unistd main = do h ...
7
votes
3answers
366 views

Is/Should wrapping functions into a monad transformer be considered bad practice?

Let's say we want to use ReaderT [(a,b)] over the Maybe monad, and then we want to do a lookup in the list. Now an easy, and not too uncommon way to this is: first possibility find a = ReaderT ...
6
votes
2answers
120 views

Avoiding lift with Monad Transformers

I have a problem that fits very well using a stack of MTs (or even one MT) over IO. Everything is good except that using lift before every action is terribly annoying! I suspect there's really nothing ...
6
votes
3answers
137 views

how can I implement this monad transformer with a continuation?

motivation. I'm trying to create a monad transformer, with a special instruction f <||> g that means "repeat this entire block containing f <||> g, once with f, the next time with g". This ...
6
votes
1answer
157 views

What is the name of this Monad Stack function?

I've got a bunch of stateful functions inside a State monad. At one point in the program there needs to be some IO actions so I've wrapped IO inside a StateT getting a pair of types like this: ...
6
votes
2answers
258 views

Why wrapping the Data.Binary.Put monad creates a memory leak? (Part 2)

As in my previous question, I'm trying to wrap the Data.Binary.Put monad into another monad so that later I can ask it questions like "how many bytes it's going to write" or "what is the current ...
6
votes
2answers
326 views

Combining StateT and State monads

Lets say I have a function f :: State [Int] Int and a function: g :: StateT [Int] IO Int I want to use f in g and pass the state between them. Is there a library function for StateT (return . ...
5
votes
1answer
122 views

How to inject a Maybe value into MaybeT

Say I have some foo :: Maybe Int and I want to bind it for example with bar :: Int -> MaybeT (Writer String) Int, what would be the idiomatic way to do that? I could define my own liftMaybe ...
5
votes
2answers
103 views

Haskell monads and a fail that doesn't require a string

I have the following monad transformer for dealing with errors in Haskell. instance (Monad m, Error e) => Monad (EitherT e m) where return = EitherT . return . return m >>= k = ...
5
votes
2answers
182 views

Abstracting monad composition as a transformer

Sorry if the question seems a bit trivial... it is not for me. I have happily composed the following monad: type SB i a = ReaderT ( AlgRO i ) (State ( AlgState i ) ) a which is, well, a well ...
5
votes
4answers
131 views

mapMonadTrans :: MonadTrans xT => (m a -> n b) -> xT m a -> xT n b

The problem is this. I have: f :: MonadIO m => ReaderT FooBar m Answer; f = (liftIO getArgs) >>= ... I need to run this with modified arguments. However, since m is unknown, I cannot ...
5
votes
4answers
246 views

Design of interface abstraction

Currently, I try to write a small game program (Skat) as a hobby project. Skat is a trick-taking game were two players play against a single player. As there are different kinds of players (lokal ...
5
votes
1answer
204 views

Why changing the Data.Binary.Put monad into a transformer creates a memory leak?

I'm trying to modify the Data.Binary.PutM monad into a monad transformer. So I started by changin it's definition from newtype PutM a = Put { unPut :: PairS a } to newtype PutM a = Put { unPut :: ...
4
votes
1answer
98 views

Result of monad inside monad transformer

This is my first acquaintance with Monad Transformers, so the answer might be obvious. Let's say I am inside a do block of type StateT MyMonad MyType, I want to make another function of the same type ...
4
votes
1answer
72 views

Haskell ReaderT Env IO boilerplate

I have the following boilerplate that I do quite often, and would like to eliminate. It looks something like this: type Configured = ReaderT Config doSomething :: Configured IO Data doSomething = do ...
4
votes
2answers
89 views

Requires MonadPlus (ST a) Instance

I'm reading the paper Typed Logical Variables in Haskell, but I'm failing to understand the details of the ultimate implementation. In particular, the backtracking state transformer introduced in ...
4
votes
2answers
160 views

Is there a better way to implement a multi-channel Writer monad in Haskell?

Problem: I need to compose writer monads of different types in the same Haskell monad transformer stack. Besides using tell to write debug messages I'd also like to use it to write some other data ...
4
votes
2answers
165 views

How to get backtracking and IO using ListT?

I don't know really how exactly should the List transformer ListT be used. For example how should this simple task be done: backtrack :: ListT IO () backtrack = do x <- lift getLine a ...
4
votes
4answers
469 views

How do you save a tree data structure to binary file in Haskell

I'm trying to save a simple (but quite big) Tree structure into a binary file using Haskell. The structure looks something like this: -- For simplicity assume each Node has only 4 childs data Tree = ...
4
votes
3answers
358 views

Using the reader monad in snap (or, monad transformers in snap)

Can someone show how to use the snap monad inside the reader monad? Monad transformers confuse me. (Alternatively, I will gladly accept suggestions of tutorials about monad transformers, and ways to ...
4
votes
2answers
212 views

Haskell Best Practise: Early termination in Haskeline

I am using the Haskeline package and I want to get three strings in a row from the command line before I do anything and I have come up with what seems to be a neat solution to me. But I am sure that ...
4
votes
1answer
323 views

Monads in monad transformer context

I have trouble gripping to monads and monad transformers. I have the following contrived example (not compilable): import Control.Monad import Control.Monad.Error import Control.Monad.Reader data ...
4
votes
5answers
483 views

How can I write a state monad that does error handling as well?

I need to write a state monad that can also support error handling. I was thinking of using the Either monad for this purpose because it can also provide details about what caused the error. I found a ...
4
votes
1answer
218 views

Use of type synonyms in monad transformers

Is it possible to use type synonyms as arguments of monad transformers' type constructor? In particular, if there is an unary type synonym for an applied monad transformer, could it be used as a type ...
4
votes
1answer
206 views

How can I make a Maybe-Transformer MaybeT into an instance of MonadWriter?

I am trying to build a MaybeT-Transformer Monad, based on the example in the Real World Haskell, Chapter Monad Transformers: data MaybeT m a = MaybeT { runMT :: m (Maybe a) } instance (Monad m) ...
3
votes
1answer
120 views

Underlying Parsec Monad

Many of the Parsec combinators I use are of a type such as: foo :: CharParser st Foo CharParser is defined here as: type CharParser st = GenParser Char st CharParser is thus a type synonym ...
3
votes
1answer
107 views

more rmonad libraries?

I want to do some rudimentary things with RMonad. Are there ways of using the "as monad" functionality to have an identity rmonad, to apply monad transformers to? have common things like StateT ...
3
votes
1answer
78 views

Why define the unit natural transformation for a monad - isn't this implied by the definition of monad being an endofunctor?

A monad is defined as an endofunctor on category C. Let's say, C has type int and bool and other constructed types as objects. Now let's think about the list monad defined over this category. By ...
3
votes
1answer
336 views

Why the boilerplates when writing new Monad Transformers

This section http://book.realworldhaskell.org/read/monad-transformers.html#id659032 from the book Real World Haskell suggests that when writing a new Monad Transformer, we have to derive instances for ...
3
votes
3answers
455 views

Using MonadError with Parsec

I'm trying to use MonadError together with Parsec. I've come up with the following code snippet: f5 = do char 'a' throwError "SomeError" f6 = f5 `catchError` (\e -> unexpected $ "Got the ...
3
votes
3answers
1k views

awkward monad transformer stack

Solving a problem from Google Code Jam (2009.1A.A: "Multi-base happiness") I came up with an awkward (code-wise) solution, and I'm interested in how it could be improved. The problem description, ...

1 2