reactive-0.9.3: src/FRP/Reactive/Internal/Misc.hs
----------------------------------------------------------------------
-- |
-- Module : FRP.Reactive.Internal.Misc
-- Copyright : (c) Conal Elliott 2008
-- License : BSD3
--
-- Maintainer : conal@conal.net
-- Stability : experimental
--
-- Misc Reactive internal defs
----------------------------------------------------------------------
module FRP.Reactive.Internal.Misc (Action, Sink) where
-- | Convenient alias for dropping parentheses.
type Action = IO ()
-- | Value consumer
type Sink a = a -> Action