unfoldr package:streaming-bytestring

Like unfoldM, but yields a final r when the Word8 generation is complete.
Given some pure process that produces characters, generate a stream of bytes. The r produced by the final Left will be the return value at the end of the stream. Note also that the Char values will be truncated to 8-bits.
Like unfoldMChunks, but feed through a final r return value.
Internal utility for unfoldr.