(no title)
hnra
|
10 months ago
Using map, fold etc. is not the hard part of functional programming. The hard part is managing effects (via monads, monad transformers, or effects). Trying to convert a procedural inner mutating algorithm to say Haskell is challenging.
jcadam|10 months ago
The main problem with Monads is you're almost always the only programmer on a team who even knows what a Monad is.
mrkeen|10 months ago
You can say that again!
Right now I'm working in C#, so I wished my C# managed effects, but it doesn't. It's all left to the programmer.
codr7|10 months ago