Top "State-monad" questions

A monad allowing state information to be attached to calculations

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 &…

haskell coding-style monads state-monad
Scalaz state monad examples

I haven't seen many examples of the scalaz state monad. There is this example but it is hard to understand …

scala scalaz state-monad
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 …

variables haskell monads state-monad ioref
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 …

haskell state monads state-monad