Copyright | (c) Antony Courtney and Henrik Nilsson Yale University 2003 |
---|---|
License | BSD-style (see the LICENSE file in the distribution) |
Maintainer | nilsson@cs.yale.edu |
Stability | provisional |
Portability | portable |
Safe Haskell | Safe |
Language | Haskell98 |
An interface giving access to some of the internal details of the Yampa implementation.
This interface is indended to be used when the need arises to break abstraction barriers, e.g. for interfacing Yampa to the real world, for debugging purposes, or the like. Be aware that the internal details may change. Relying on this interface means that your code is not insulated against such changes.
Documentation
A single possible event occurrence, that is, a value that may or may not occur. Events are used to represent values that are not produced continuously, such as mouse clicks (only produced when the mouse is clicked, as opposed to mouse positions, which are always defined).
Monad Event # | Monad instance |
Functor Event # | Functor instance (could be derived). |
Applicative Event # | Applicative instance (similar to |
Alternative Event # | Alternative instance |
Eq a => Eq (Event a) # | Eq instance (equivalent to derived instance) |
Ord a => Ord (Event a) # | Ord instance (equivalent to derived instance) |
Show a => Show (Event a) # | |
NFData a => NFData (Event a) # | NFData instance |
Forceable a => Forceable (Event a) # | Forceable instance |