- data InChan i
- data OutChan o
- getChanContents :: OutChan a -> IO [a]
- dupChan :: OutChan a -> IO (OutChan a)
- module Control.Concurrent.Chan.Class
Chan pairs
The write side of a chan pair
The read side of a chan pair
Utility functions:
getChanContents :: OutChan a -> IO [a]Source
Return a lazy list representing the contents of the supplied OutChan, much like System.IO.hGetContents.