| Copyright | (c) 2012 Ertugrul Soeylemez |
|---|---|
| License | BSD3 |
| Maintainer | Ertugrul Soeylemez <es@ertes.de> |
| Safe Haskell | None |
| Language | Haskell2010 |
Control.Wire.Prefab.Simple
Description
Basic wires.
Basic signal manipulation
append :: Monad m => Wire e m a b -> Wire e m a (a, b) Source
Convenience function to add another signal.
- Depends: current instant.
prepend :: Monad m => Wire e m a b -> Wire e m a (b, a) Source
Convenience function to add another signal.
- Depends: current instant.
Forcing evaluation
Acts like the identity wire, but forces evaluation of the signal to WHNF.
- Depends: current instant.