privileged-concurrency-0.7.0: Provides privilege separated versions of the concurrency primitives.

Safe HaskellSafe
LanguageHaskell2010

Control.Concurrent.STM.TVar.Class

Documentation

class TVarWrite var where Source #

Minimal complete definition

writeTVar

Methods

writeTVar :: var a -> a -> STM () Source #

Instances

class TVarRead var where Source #

Minimal complete definition

readTVar

Methods

readTVar :: var a -> STM a Source #