BSD-3-Clause licensed and maintained by Henning Thielemann
This version can be pinned in stack with:lazyio-0.1.0.4@sha256:bc1b39d7f206f592278a0f14016a0d665a29f7a608ed7fac9e88570755af0031,2125

Module documentation for 0.1.0.4

  • System
    • System.IO
      • System.IO.Lazy

Run IO actions lazily while respecting their order. Running a value of the LazyIO monad in the IO monad is like starting a thread which is however driven by its output. That is, the LazyIO action is only executed as far as necessary in order to provide the required data.

The package may help you to avoid stack overflows in mapM. Say you have

mapM f xs

where xs is a long list. When run, you may encounter a stack overflow. To prevent it, write instead:

import qualified System.IO.Lazy as LazyIO

LazyIO.run $ mapM (LazyIO.interleave . f) xs

The stack overflow is gone.