6
votes
4answers
192 views
Why there is no something like IMonad<T> in upcoming .NET 4.0
... with all those new (and not so new if we count IEnumerable) monad-related stuff?
interface IMonad<T>
{
SelectMany/Bind();
Return/Unit();
}
That would allow to …
2
votes
4answers
155 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 …
5
votes
6answers
318 views
Some questions about monads in Haskell
I'm learning about monads and have a few questions.
This is where I am right now. Please correct me where I am wrong.
The >>= symbol is an infix operator. Infix operators …
0
votes
0answers
11 views
pipe readers and writers
why cant we have multiple writers in pipe but single reader ?
27
votes
13answers
3k views
What is a monad?
Having briefly looked at Haskell recently I wondered whether anybody could give a brief, succinct, practical explanation as to what a monad essentially is? I have found most explan …
3
votes
2answers
88 views
looking for learning exercise: implement these monads
When learning about new programming subjects I usually follow a pattern: I read about it, I understand it, and then I code up a few examples to make sure I really get it.
I've re …
1
vote
3answers
145 views
Why doesn’t a python dict.update() return the object?
I 'm trying to do :
award_dict = {
"url" : "http://facebook.com",
"imageurl" : "http://farm4.static.flickr.com/3431/3939267074_feb9eb19b1_o.png",
"count" : 1,
}
def a …
0
votes
2answers
96 views
In C# adding SelectMany extends linq to a new monad type, how do I do the same thing in VB.net?
An old Yet Another Language Geek blog post explaining monads describes adding a SelectMany extension method to C# in order to extend the linq syntax to new types.
I've tried it in …
29
votes
12answers
3k views
Can anyone explain Monads?
I think I understand what 'Maybe Monads' are, but I'm not sure about the other types.
26
votes
7answers
1k views
Help a C# developer understand: What is a monad?
There is a lot of talk about monads these days. I have read a few articles / blog posts, but I can't go far enough with their examples to fully grasp the concept. The reason is tha …
3
votes
5answers
284 views
Evil use of Maybe monad and extension methods in C#?
I've been thinking about the null propagation problem in .NET, which often leads to ugly, repeated code like this:
Attempt #1 usual code:
string activeControlName = null;
var act …
2
votes
2answers
185 views
Simplifying some Haskell code
So I'm working on a minimax implementation for a checkers-like game to help myself learn Haskell better. The function I'm having trouble with takes a list for game states, and gen …
4
votes
4answers
354 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, …
4
votes
3answers
226 views
Haskell: Can I use a where clause after a block with bind operators (>>=)?
I have a very simple question. I'd like to use a where clause after a bloc of code that uses bind operators but I get a compilation error.
Here is a simple example:
main =
pu …
3
votes
2answers
258 views
Values inside monads, nested in data structures?
Suppose that in a Haskell program I have some data whose type is something like:
IO [ IO (Int, String, Int) ], or
IO [ (Int, String, IO Int) ], or
[ (Int, String, IO Int) ]
bu …
