io-streams v1.3.6.0 Release Notes

Release Date: 2017-01-13 // over 7 years ago
    • Added new fold functions: haskell ⚡️ fold_ :: (x -> a -> x) -- ^ accumulator update function -> x -- ^ initial seed -> (x -> s) -- ^ recover folded value -> InputStream a -- ^ input stream -> IO s ⚡️ foldM_ :: (x -> a -> IO x) -- ^ accumulator update action -> IO x -- ^ initial seed -> (x -> IO s) -- ^ recover folded value -> InputStream a -- ^ input stream -> IO s