A monad in programming is a composable computation description. Monads are an important construct in functional programming languages like Haskell.
7
votes
1answer
92 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 ...
14
votes
1answer
136 views
Correspondence between type classes and grammar levels in the Chomsky hierarchy
My question is about the Applicative and Monad type classes on the one hand, and the context-free and context-sensitive grammar levels of the Chomsky hierarchy on the other.
I've heard that there's a ...
1
vote
1answer
87 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 ...
3
votes
1answer
78 views
Why does smallCheck's `Series` class have two types in the constructor?
This question is related to my other question about smallCheck's Test.SmallCheck.Series class. When I try to define an instance of the class Serial in the following natural way (suggested to me by an ...
2
votes
2answers
111 views
Types and do notation
This is several questions rolled into one:
In do notation, does each line have to return the same type? For example, can I write one line in a single do block that returns an IO monad, and another ...
4
votes
2answers
99 views
How to use SmallCheck in Haskell?
I am trying to use SmallCheck to test a Haskell program, but I cannot understand how to use the library to test my own data types. Apparently, I need to use the Test.SmallCheck.Series. However, I find ...
0
votes
1answer
85 views
Haskell monad return type
I'm trying to do a bit of programming and I can't get into monads. I've advanced a bit with IO functions, but now I'm definitely lost...
I've got a XML string that was loaded from the network (so ...
7
votes
1answer
98 views
Transformation under Transformers
I'm having a bit of difficulty with monad transformers at the moment. I'm defining a few different non-deterministic relations which make use of transformers. Unfortunately, I'm having trouble ...
0
votes
2answers
61 views
Overflow problems in dealing with IO and MonadRandom and chained computations
So basically I have a computation step that takes in a previous result and outputs a Rand g Path, where Path is a custom data type (think of it like a traveling salesman kind of problem). I'm letting ...
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 ...
1
vote
1answer
58 views
Seeking example of how to use nntp package
I still quite new to the whole monad/IO thing, and I am having trouble using the nntp package.
Could someone show me an example of how to use it please?
eg. How to get a list of article IDs of a group ...
3
votes
1answer
52 views
Non-exhaustive Pattern exception, for bind but not for do
To put into context, I was converting a list comprehension (from there) doing "pattern filtering" to its monadic counterpart (do and bind), then I meet an exception.
I start with these definitions ...
1
vote
3answers
127 views
Haskell IO function type mismatch
what is the problem with the following code:
nextMatch :: (a -> Bool) -> [IO a] -> (IO a, [IO a])
nextMatch f (x:xs) = do
s <- x
if f s then (return x, xs)
else nextMatch ...
0
votes
1answer
51 views
HUnit testing with file dependent tests
I have a lexer, and wish to test it against a set of known good test cases. These are held in a subdirectory ./test_src/ , and each has an extension testname.txt
What i'd like to do is get the paths ...
16
votes
5answers
1k views
What is so special about Monads?
A monad is a mathematical structure which is heavily used in (pure) functional programming, basically Haskell. However, there are many other mathematical structures available, like for example ...
10
votes
0answers
239 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 ...
4
votes
2answers
109 views
Haskell processing [IO String]
I've got the following function:
lines' :: [IO String]
lines' = getLine : lines'
I was hoping I could just use all the mighty list functions on
this list, like filter etc. But my knowledge about ...
6
votes
4answers
183 views
Multiple flatMap methods for a single monad?
Does it make sense to define multiple flatMap (or >>= / bind in Haskell) methods in a Monad?
The very few monads I actually use (Option, Try, Either projections) only define one flatMap method.
...
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 ...
2
votes
1answer
78 views
How can I invoke a Monad function directly?
In the example below, I'd like to be able to call the 'ls' function directly (see the last commented out line of the example) but I have not been able to figure out the correct syntax.
Thanks in ...
6
votes
1answer
137 views
What does these square brackets in Haskell?
I read the code below in Indexed Monad
{-# LANGUAGE QuasiQuotes #-}
import Control.Monad.Indexed.State
import Control.Monad.Indexed
import Language.Haskell.IndexedDo
hoge :: IxState Int [Int] ()
...
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
115 views
Haskell Quine: “ap” Monad
What is the proper way to use the "ap" monad in Haskell? I want to do something similar to this:
main = (putStr . ap (++) show) "main = (putStr . ap (++) show) "
but I get the error "Not in scope: ...
1
vote
1answer
158 views
Implementing this monad/type in Haskell?
I really cannot figure out the syntax necessary for this, and it probably comes from my lack of understanding of how types work.
I want a type DataPoint, which stores either a tuple (x, dataval) or ...
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 ...
7
votes
2answers
147 views
Monadic .NET Types
In a great series of posts Eric Lippert outlines the so-called "Monad Pattern" for .NET types that kinda act like monads and implements return and bind for some of them.
As examples of monadic types ...
7
votes
2answers
132 views
Monadic Programming in C#
In Haskell, we have the filterM function. The source code for it is:
filterM :: (Monad m) => (a -> m Bool) -> [a] -> m [a]
filterM _ [] = return []
filterM p (x:xs) = do
...
2
votes
1answer
115 views
scala - Analog of Haskell's sequence [duplicate]
What is the scala analog of Haskell's sequence function?
http://hackage.haskell.org/packages/archive/base/latest/doc/html/Prelude.html#v:sequence
sequence is defined in Haskell as follows:
sequence ...
2
votes
1answer
62 views
How to sort a list based on a IO Int value
I have a [(String, [String], IO Int)] list, which I'd like to sort. sortBy (\x -> ...) list requires me to use IO to fetch the internal value of the IO Int, which means that I can't return Ordering ...
4
votes
1answer
115 views
lambdabot suggests join, but it doesn't work
Here is a higher-order function that applies an argument to a given function twice:
dapp :: (a -> a -> a) -> a -> a
dapp = \f x -> f x x
ghci> dapp (*) 5
25
Can we make that ...
8
votes
4answers
260 views
What can Arrows do that Monads can't?
Arrows seem to be gaining popularity in the Haskell community, but it seems to me like Monads are more powerful. What is gained by using Arrows? Why can't Monads be used instead?
2
votes
1answer
113 views
Either, Options and for comprehensions
I was coding a for comprehension, and wondered something:
def updateUserStats(user: User): Either[Error,User] = for {
stampleCount <- stampleRepository.getStampleCount(user).right
userUpdated ...
2
votes
1answer
105 views
Parallel Repa code doesn't create sparks
I'm writing code to do a subset product: it takes a list of elements and a list of indicator variables (of the same length). The product is computed in a tree, which is crucial to our application. ...
1
vote
1answer
100 views
Haskell- Running monad states
I am stuck trying to get this function:
runArrayState :: Array arr => ArrayState arr e a -> arr e -> (a, arr e)
to run the ArrayState action let's call it act with array arr and get ...
3
votes
2answers
91 views
Maybe monad inside stack of transformers
I have the following code:
import Control.Monad
import Control.Monad.Trans
import Control.Monad.Trans.State
type T = StateT Int IO Int
someMaybe = Just 3
f :: T
f = do
x <- get
val ...
5
votes
1answer
133 views
Creating monads analoguous to the IO Monad with chained state
Hello folks,
I'm pretty new to Haskell again this year (after using it in the early 1990s and then again in the early 00's). I'm trying to write some code that uses a pattern that is almost ...
7
votes
3answers
202 views
Derivation of Free Monad
Control.Monad.Free implements a free monad as:
data Free f a = Pure a | Free (f (Free f a))
instance Functor f => Functor (Free f) where
fmap f = go where
go (Pure a) = Pure (f a)
go ...
5
votes
2answers
171 views
A parallel monad map in Haskell? Something like parMapM?
I'm looking for a way to run two computations in parallel in the ST-Monad. I am building a rather large array (using STUArray) and I would like to do it in parallel.
So far I've found this and this ...
0
votes
1answer
131 views
Standard Operations on Option<T> monad beyond Bind and Map
I'm using a C# implementation of F# option<`a`> monad from Petricek book (Real World Functional Programming):
internal enum OptionType { Some, None }
internal abstract class Option<T>
{
...
15
votes
1answer
289 views
Idiomatic Scala translation of Kiselyov's zippers?
Oleg Kiselyov showed how to make a zipper from any traversable by using delimited continuations. His Haskell code is quite short:
module ZipperTraversable where
import qualified Data.Traversable ...
2
votes
3answers
145 views
Haskell — Monad binding evaluation order
I'm having some trouble figuring out /how/ the bind operator would actually bind together the following State monads:
pop :: State [Int] Int
pop = do
(x:xs) <- get
put xs
...
5
votes
2answers
133 views
Feeding a monadic expression into unless or when
I often find myself writing code that looks like this:
import System.Directory (doesFileExist)
import Control.Monad (unless)
example = do
fileExists <- doesFileExist "wombat.txt"
unless ...
4
votes
4answers
236 views
How are all graphic and web libraries implemented in Haskell?
I only begin to learn Haskell. I've read that it is a pure functional language and everything in it is immutable. So things like input output, writing and reading databases cause mutability of the ...
1
vote
1answer
160 views
Haskell IO monad and do notation
The following Haskell snippit will not compile and I can't figure out why.
runCompiler :: TC -> IO ()
runCompiler tc = let cp' = cp in
do
cp'
return ()
where
cp = ...
6
votes
1answer
154 views
Convert [IO Int] to IO [Int] in Haskell?
I have this code that fits my need:
f :: [IO Int] -> IO [Int]
f [] = return []
f (x:xs) = do
a <- x
as <- f xs
return (a:as)
But I thougth there would be a predefined way (msum ?)
...
5
votes
1answer
89 views
Can't find a proper signature for a function using STUArray (neither can GHC)
I built a function for finding the determinant of a matrix using the ST-Monad and unboxed STArrays (STUArray). The type for a matrix is the following:
newtype Matrix e = Matrix (Array Int (UArray Int ...
2
votes
0answers
86 views
Separating State for a Model and GUI IO ( Wx) : Stack or FRP?
For my diagramming tool, I'd like to keep the code of the core model isolated from the GUI.
In the following example, the "state " is passed around with vDiag, which is a Tvar. This is a design ...
6
votes
1answer
144 views
Member function doesn't work correctly for floating point numbers
In this answer, the following code is evaluated as follows:
> let x = fromList [0, -1, 0/0, -5, -6, -3] :: Set Float
> member 0 x
True
> let x' = insert (0/0) x
> member 0 x'
False
...


