Hello, everyone. Because I'm newbie, my question may seem naive. but:
I'm doing something like:
do
 str' <- S.mapM fun1 str
 str'' <- S.mapM fun2 str'
 -- so on
and I suppose that real iteration (if I use `mapM` or `iterM`, map other 
functions of streaming) *happens only one* and resulting code after 
compilation will looks like
for item in str:
 item' = fun1 item
 item'' = fun2 item'
 -- so on
Am I right? Or are there some pitfalls here which we should remember to 
accomplish such result?


/Best regards, Paul



-- 
You received this message because you are subscribed to the Google Groups 
"Haskell Pipes" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to haskell-pipes+unsubscr...@googlegroups.com.
To post to this group, send email to haskell-pipes@googlegroups.com.

Reply via email to