strict-mutable-base-1.1.0.0: Strict variants of mutable data types from base.
Safe HaskellSafe-Inferred
LanguageHaskell2010

Control.Concurrent.Chan.Strict

Contents

Description

For full documentation please refer to Control.Concurrent.Chan.

Synopsis

Documentation

data Chan' a Source #

A strict (WHNF) variant of Chan.

Instances

Instances details
Eq (Chan' a) Source # 
Instance details

Defined in Control.Concurrent.Chan.Strict

Methods

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

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

Operations

writeChan' :: Chan' a -> a -> IO () Source #

writeChan for Chan'.

Evaluates the value to WHNF.

writeList2Chan' :: Chan' a -> [a] -> IO () Source #

writeList2Chan for Chan'.

Evaluates the values to WHNF.