I've just been investigating FRP in Haskell (mainly reactive-banana
(testimonials!)), and I'm wondering is it common for them, and in case of reactive-banana what's the reason to operate in IO
monad instead of being constrained to MonadIO
, or rven better, any Monad
(so that I could provide own stack)?
It seems to me that's because of focus on GUI programming, where you integrate it with some existing libraries that operate in IO
? Would it be feasible to change it so that I could integrate it with custom monad stack?
MonadIO m
– Hypaethral