The documentation for enumFrom disagrees with my REPL experiment.
https://hackage.haskell.org/package/streaming-0.2.3.0/docs/Streaming-Prelude.html#v:enumFrom
I replaced the S.enumFrom 1 with S.each [1..] and got the same result, contrary to the documentation which says "With each [1..] the following bit of connect-and-resume would be impossible". Is the documentation out of date or am I misreading the documentation?
The documentation for
enumFromdisagrees with my REPL experiment.https://hackage.haskell.org/package/streaming-0.2.3.0/docs/Streaming-Prelude.html#v:enumFrom
I replaced the
S.enumFrom 1withS.each [1..]and got the same result, contrary to the documentation which says "With each [1..] the following bit of connect-and-resume would be impossible". Is the documentation out of date or am I misreading the documentation?