polysemy-wire-zoo-0.1.0: Polysemy interface for various libraries
Safe HaskellSafe-Inferred
LanguageHaskell2010

Polysemy.Testing

Synopsis

Documentation

intersperse :: Sem r () -> Sem r a -> Sem r a Source #

intersperse m a runs m before every action in a. In this way, it's like injecting logic into each bind. Useful for polling asynchronous results when testing IO.