-- | -- Module : Simulation.Aivika.Trans.Cont -- Copyright : Copyright (c) 2009-2017, David Sorokin -- License : BSD3 -- Maintainer : David Sorokin -- Stability : experimental -- Tested with: GHC 8.0.1 -- -- The 'Cont' monad is a variation of the standard Cont monad -- and F# async workflow, where the result of applying -- the continuations is the 'Event' computation. -- module Simulation.Aivika.Trans.Cont (ContCancellation(..), Cont) where import Simulation.Aivika.Trans.Internal.Cont