Tagged Questions
79
votes
0answers
9k views
Can anyone explain Monads? [closed]
Possible Duplicate:
What is a monad?
I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
10
votes
6answers
1k views
Is Haskell truly pure (is any language that deals with input and output outside the system)?
After touching on Monads in respect to functional programming, does the feature actually make a language pure, or is it just another "get out of jail free card" for reasoning of computer systems in ...
2
votes
2answers
710 views
Operating on a return from a Maybe that contains “Just”
I have an algorithm that returns ->Maybe ([(Int,Int)],(Int,Int))
I would like to call this from another method and perform an operation on the data.
However, the return value contains the keyword ...
17
votes
11answers
2k views
Monad in non-programming terms [closed]
Possible Duplicate:
What is a monad?
How would you describe a monad in non-programming terms? Is there some concept/thing outside of programming (outside of all programming, not just FP) ...
174
votes
6answers
14k views
Large-scale design in Haskell?
What is a good way to design/structure large functional programs, especially in Haskell?
I've been through a bunch of the tutorials (Write Yourself a Scheme being my favorite, with Real World Haskell ...
26
votes
7answers
2k views
Creative uses of monads
I'm looking for creative uses of monads to learn from. I've read somewhere that monads have been used for example in AI, but being a monad newbie, I fail to see how.
Please include a link to the ...
35
votes
7answers
1k views
What is a monad in FP, in categorical terms?
Every time someone promises to "explain monads", my interest is piqued, only to be replaced by frustration when the alleged "explanation" is a long list of examples terminated by some off-hand remark ...
7
votes
5answers
2k views
Does Haskell have variables?
I've frequently heard claims that Haskell doesn't have varibles; in particular, this answer claims that it doesn't, and it was upvoted at least nine times and accepted.
So does it have variables or ...
6
votes
2answers
283 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 ...
89
votes
3answers
14k views
A monad is just a monoid in the category of endofunctors, what's the problem? [closed]
Who first said
A monad is just a monoid in the
category of endofunctors, what's the
problem?
and on a less important note is this true and if so could you give an explanation (hopefully one ...
59
votes
7answers
3k views
Why are side-effects modeled as monads in Haskell?
Could anyone give some pointers on why the unpure computations in Haskell are modeled as monads?
I mean monad is just an interface with 4 operations, so what was the reasoning to modeling ...
13
votes
7answers
1k views
Where can I learn advanced Haskell?
In a comment to one of my answers, SO user sdcwc essentially pointed out that the following code:
comb 0 = [[]]
comb n =
let rest = comb (n-1)
in map ('0':) rest
++ map ('1':) rest
...
11
votes
4answers
4k views
A Haskell function of type: IO String-> String
I wrote a bunch of code in Haskell to create an index of a text. The top function looks like this:
index :: String -> [(String, [Integer])]
index a = [...]
Now I want to give this function a ...
4
votes
4answers
599 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 = ...
12
votes
7answers
399 views
How to extract value from monadic action
Is there a built-in function with signature :: (Monad m) => m a -> a ?
Hoogle tells that there is no such function.
Can you explain why?
3
votes
5answers
2k views
What are monads? [closed]
everyone keeps talking about monads and monadic style and Haskell. i can't find much information or tutorial on haskell monads.
1
vote
1answer
124 views
Dispatching to correct function with command line arguments in Haskell
I'm writing a little command-line program in Haskell. I need it to dispatch to the correct encryption function based on the command line arguments. I've gotten that far, but then I need the remaining ...
1
vote
1answer
136 views
How to evaluate IO Bools in Haskell
I'm trying to write a function that takes an IO Bool and does stuff based on what this is, but I can't figure out how to evaluate the IO Bool. I tried saying do cond and do {cond==True} but got the ...
27
votes
7answers
5k views
Use of Haskell state monad a code smell?
God I hate the term "code smell", but I can't think of anything more accurate.
I'm designing a high-level language & compiler to Whitespace in my spare time to learn about compiler construction, ...
27
votes
9answers
2k views
Monad theory and Haskell
Most tutorials seem to give a lot of examples of monads (IO, state, list and so on) and then expect the reader to be able to abstract the overall principle and then they mention category theory. I ...
24
votes
1answer
2k views
Monads vs. Arrows
I'm broadly familiar with the concepts of monads and arrows as used in functional programming. I also understand that they can be used to solve similar kinds of problems.
However - I'm still a bit ...
8
votes
5answers
1k views
Haskell and State
Haskell is a pure functional programming language.
My question is:
What are the advantages and disadvantages of using Haskell to solve problems involving lots of state, for example GUI programming or ...
23
votes
5answers
1k views
ST Monad == code smell?
I'm working on implementing the UCT algorithm in Haskell, which requires a fair amount of data juggling. Without getting into too much detail, it's a simulation algorithm where, at each "step," a ...
15
votes
5answers
2k views
How do you make a generic memoize function in Haskell?
I've seen the other post about this, but is there a clean way of doing this in Haskell?
As a 2nd part, can it also be done without making the function monadic?
9
votes
3answers
379 views
Computation Constructs (Monads, Arrows, etc.)
I have become rather interested in how computation is modeled in Haskell. Several resources have described monads as "composable computation" and arrows as "abstract views of computation". I've never ...
12
votes
6answers
816 views
In what sense is the IO Monad pure?
I've had the IO monad described to me as a State monad where the state is "the real world". The proponents of this approach to IO argue that this makes IO operations pure, as in referentially ...
23
votes
1answer
763 views
Seeking constructive criticism on monad implementation
I'm learning monads, this is my first working one (aside from the trivial monad). Feel free to criticize everything in it ruthlessly. I'm especially interested in "more idiomatic" and "more elegant" ...
20
votes
2answers
391 views
Folding, function composition, monads, and laziness, oh my?
I am puzzled. I can write this:
import Control.Monad
main = print $ head $ (foldr (.) id [f, g]) [3]
where f = (1:)
g = undefined
and the output is 1. That makes sense, because it ...
11
votes
3answers
370 views
STM monad problem
This is just a hypothetical scenario to illustrate my question. Suppose that there are two threads and one TVar shared between them. In one thread there is an atomically block that reads the TVar ...
9
votes
1answer
249 views
Does the chain function in underscore.js create a monad?
In the chain documentation you find:
Calling chain on a wrapped object will cause all future method calls
to return wrapped objects as well. When you've finished the
computation, use value to ...
7
votes
4answers
328 views
How do I handle an infinite list of IO objects in Haskell?
I'm writing a program that reads from a list of files. The each file either contains a link to the next file or marks that it's the end of the chain.
Being new to Haskell, it seemed like the ...
6
votes
5answers
1k views
Haskell: monadic takeWhile?
I have some functions written in C that I call from Haskell. These functions return IO (CInt). Sometimes I want to run all of the functions regardless of what any of them return, and this is easy. ...
16
votes
1answer
524 views
What is the name of this monad-like functional programming pattern?
I have occasionally encountered a pattern in code which resembles a monad but
does not keep a consistent type across >>=.
Here is the simplest example I could come up with:
(First some ...
16
votes
1answer
418 views
Is the `Monad ((,) w)` instance anywhere standard?
I use the pair spelling of Writer all the time, but I always have to instantiate myself:
instance (Monoid w) => Monad ((,) w) where
return x = (mempty, x)
~(w,x) >>= f = let (w', y) ...
5
votes
4answers
262 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 ...
9
votes
1answer
140 views
Does Writer Monad guarantee right associative concatenation?
It was claimed in Validations in Haskell that use of a Writer guarantees right-associative concatenation. However, this example seems to show otherwise. What's the correct answer?
{-# LANGUAGE ...
8
votes
1answer
157 views
Execution order with (>>=) not what I expected
I've got a series of network requests, that each take >10 seconds.
So that the user knows what's happening, I give updates:
main = do putStr "Downloading the first thing... "
{- Net request ...
5
votes
2answers
402 views
Is mapM in Haskell strict? Why does this program get a stack overflow?
The following program terminates correctly:
import System.Random
randomList = mapM (\_->getStdRandom (randomR (0, 50000::Int))) [0..5000]
main = do
randomInts <- randomList
print $ take 5 ...
5
votes
5answers
379 views
Collecting IO outputs into list
how can i do multiple calls to SDL.pollEvent :: IO Event until the output is SDL.NoEvent and collect all the results into a list?
in imperative terms something like this:
events = []
event = ...
4
votes
4answers
301 views
convert do notation to bind function
I know that the following "do" notation's "bind" function is equivalent to getLine >>= \line -> putStrLn
do line <- getLine
putStrLn line
But how is the following notation ...
3
votes
2answers
274 views
taking out a value out of a monad? haskell
Is there anyway to take 'thing' out of a monad? I am developing a game, and i am now trying to understand about database, i found happstack really nice but i cant get the thing.
i mean, i have this ...
3
votes
2answers
311 views
Why isn't (->) implemented with Control.Monad.Instances by default
I was reading LYAH. It says I need to explicitly load Control.Monad.Instances to get the following syntax to work:
( ( fmap (+5) ) (+5) ) 4
Why is that? Why if functors are this underlying and ...
1
vote
2answers
163 views
State Monads in Haskell
I am writing a function in Haskell that takes in a Java class file, and writes another class file that is identical but contains some modifications. For this, I feel that I definitely need a state ...
0
votes
3answers
486 views
transforming IO String to String
I am having an issue converting IO String() to a String()
Below is the function to eval an expression.
foobar :: String -> IO String
eval :: String -> Sh () ()
eval x = do
s <- foobar x
...
0
votes
3answers
772 views
Problem with do construct in haskell
I'm trying to learn Haskell and want to write a small program which prints the content of a file to the screen. When I load it into GHCi I get the following error:
The last statement in a 'do' ...
25
votes
4answers
1k views
How do you identify monadic design patterns?
I my way to learn Haskell I'm starting to grasp the monad concept and starting to use the known monads in my code but I'm still having difficulties approaching monads from a designer point of view. In ...
26
votes
3answers
1k views
Difference between State, ST, IORef, and MVar
I am working through Write Yourself a Scheme in 48 Hours (I'm up to about 85hrs) and I've gotten to the part about Adding Variables and Assignments. There is a big conceptual jump in this chapter, and ...
27
votes
5answers
892 views
Monads as adjunctions
I've been reading about monads in category theory. One definition of monads uses a pair of adjoint functors. A monad is defined by a round-trip using those functors. Apparently adjunctions are very ...
11
votes
2answers
981 views
When to use Haskell monads
I'm implementing a combinatorial optimization algorithm in Haskell:
Given an initial candidate solution, repeat until stopping criteria are met:
1. Determine possible moves
2. Evaluate possible ...
11
votes
5answers
718 views
What programming task provided your breakthrough with monads? [closed]
In a recent blog post about a probability monad he'd written, Mark Dominus wrote, "So I feel like I've finally arrived, monadwise."
My first monadic program was an awkward solution to Problem 32 from ...