Tagged Questions
5
votes
1answer
69 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
141 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
83 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
264 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 ...
6
votes
1answer
97 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
124 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
76 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
138 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
133 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
289 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
118 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
2answers
194 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
95 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
623 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
464 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
842 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 ...
6
votes
2answers
287 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
146 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 ...
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 ...
2
votes
1answer
105 views
Finalization in Pipes-2.1.0 package
I am using the Pipes-2.1.0 package and the zeromq3-haskell package to construct a little message pipeline. Everything seems to be going well except that I am having trouble understanding finalization ...
3
votes
1answer
242 views
How do I actually execute a StateT monad along with IO?
I am trying to follow the advice given in Combine state with IO actions for building up an AppState along with an IO monad. What I've gotten is this:
module Main where
import Control.Monad.State
...
1
vote
1answer
95 views
Correct control monad for aliasing
I have a monadic function which returns a user id:
do
id <- getUserId
I need to be able to "superimpose", on getUserId, a function which looks up, and returns, an alias to the value returned by ...
1
vote
1answer
249 views
Repeated calling a Haskell monad
I have a Haskell function that returns a monad, declared as follows:
data Options = Options {
optGames :: Int,
optSuits :: Int,
optVerbose :: Bool
} deriving Show
playGame :: Options ...
4
votes
1answer
138 views
Why can't ContT be made an instance of MonadError?
I have a monad transformer stack including an ErrorT and I want to wrap a ContT r transformer around the whole thing. When I try to do that, my calls to throwError generate type errors - apparently ...
0
votes
2answers
278 views
lifting trouble with ResourceT
I'm adapting this example, in particular, the client. I'll tel you what I think the trouble is, following the code and the error it generates.
> {-# LANGUAGE OverloadedStrings #-}
> import ...
2
votes
2answers
216 views
Using ReaderT to create a modifiable environment
I have been following and expanding on the tutorial Write Yourself A Scheme. I have a type LispVal wrapped up in a couple of layers of monad transformers:
import qualified Data.Map as M
data LispVal ...