uni-events-2.2.1.0: Event handling for the uniform workbench
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.
data Cell a Source
newCell :: a -> IO (Cell a)Source
emptyCell :: Cell a -> IO ()Source
inspectCell :: Cell a -> IO (Maybe a)Source