concurrent-machines-0.3.1.1: Concurrent networked stream transducers

Safe HaskellNone
LanguageHaskell2010

Data.Machine.Concurrent.Tee

Description

Support for machines with two inputs from which input may be drawn deterministically. In contrast to Data.Machine.Tee, the two inputs are eagerly run concurrently in this implementation.

Synopsis

Documentation

tee :: forall m a a' b b' c. MonadBaseControl IO m => ProcessT m a a' -> ProcessT m b b' -> TeeT m a' b' c -> TeeT m a b c Source #

Compose a pair of pipes onto the front of a Tee.