Is there (or is it possible to have) reactive parsec (or any other pure functional parser) in Haskell?
simply, I want to feed parser my self char by char. and get result as much as I feed enough to get output.
or much simpler, how can I do it in 'foldr' or at least 'map'?
do we need different version of them to support such reactive behavior?
thank you.
edit:
my question is about FRP in particular. I used parser as an example witch I the best i can think about to clarify my question and give big picture of what I need.
I believe FRP is not just about UI, right?