lifted-base-0.2.3.12: lifted IO operations from the base library
CopyrightLiyang HU Bas van Dijk
LicenseBSD-style
MaintainerBas van Dijk <v.dijk.bas@gmail.com>
Stabilityexperimental
Safe HaskellSafe
LanguageHaskell98

Control.Concurrent.Chan.Lifted

Description

This is a wrapped version of Control.Concurrent.Chan with types generalised from IO to all monads in MonadBase.

unGetChan and isEmptyChan are deprecated in base, therefore they are not included here. Use TVar instead.

Synopsis

Documentation

data Chan a Source #

Chan is an abstract type representing an unbounded FIFO channel.

Instances

Instances details
Eq (Chan a)

Since: base-4.4.0.0

Instance details

Defined in Control.Concurrent.Chan

Methods

(==) :: Chan a -> Chan a -> Bool Source #

(/=) :: Chan a -> Chan a -> Bool Source #

newChan :: MonadBase IO m => m (Chan a) Source #

Generalized version of newChan.

writeChan :: MonadBase IO m => Chan a -> a -> m () Source #

Generalized version of writeChan.

readChan :: MonadBase IO m => Chan a -> m a Source #

Generalized version of readChan.

dupChan :: MonadBase IO m => Chan a -> m (Chan a) Source #

Generalized version of dupChan.

getChanContents :: MonadBase IO m => Chan a -> m [a] Source #

Generalized version of getChanContents.

writeList2Chan :: MonadBase IO m => Chan a -> [a] -> m () Source #

Generalized version of writeList2Chan.