uni-events-2.2.2.1: uni events
Safe HaskellSafe-Inferred
LanguageHaskell98

Events.Cells

Description

A Cell is a container for a value. It is created with the value in it. The only change we can make is to remove the value, and we cannot put it back again.

Documentation

data Cell a Source #

newCell :: a -> IO (Cell a) Source #

emptyCell :: Cell a -> IO () Source #