Safe Haskell | None |
---|---|
Language | Haskell2010 |
- type SyncExcept m cl a b e = MSFExcept (ReaderT (TimeInfo cl) m) a b e
- type BehaviourFExcept m td a b e = forall cl. td ~ TimeDomainOf cl => SyncExcept m cl a b e
- type BehaviorFExcept m td a b e = BehaviourFExcept m td a b e
- commuteReaderExcept :: ReaderT r (ExceptT e m) a -> ExceptT e (ReaderT r m) a
- try :: Monad m => SyncSF (ExceptT e m) cl a b -> SyncExcept m cl a b e
- once :: Monad m => (a -> m e) -> SyncExcept m cl a b e
- once_ :: Monad m => m e -> SyncExcept m cl a b e
- throwS :: Monad m => SyncSF (ExceptT e m) cl e a
- throwOn' :: Monad m => SyncSF (ExceptT e m) cl (Bool, e) ()
- throwOn :: Monad m => e -> SyncSF (ExceptT e m) cl Bool ()
- step :: Monad m => (a -> m (b, e)) -> SyncExcept m cl a b e
- keepFirst :: Monad m => SyncSF m cl a a
- timer :: (Monad m, TimeDomain td, Ord (Diff td)) => Diff td -> BehaviorF (ExceptT () m) td a (Diff td)
- scaledTimer :: (Monad m, TimeDomain td, Fractional (Diff td), Ord (Diff td)) => Diff td -> BehaviorF (ExceptT () m) td a (Diff td)
- safe :: Monad m => MSF m a b -> MSFExcept m a b e
- safely :: Monad m => MSFExcept m a b Empty -> MSF m a b
- data Empty :: *
- exceptS :: Monad m => MSF (ExceptT e m) a b -> MSF m a (Either e b)
- runMSFExcept :: MSFExcept m a b e -> MSF (ExceptT e m) a b
Documentation
type BehaviourFExcept m td a b e = forall cl. td ~ TimeDomainOf cl => SyncExcept m cl a b e Source #
type BehaviorFExcept m td a b e = BehaviourFExcept m td a b e Source #
Compatibility to U.S. american spelling.
commuteReaderExcept :: ReaderT r (ExceptT e m) a -> ExceptT e (ReaderT r m) a Source #
Commute the effects of the |ReaderT| and the |ExceptT| monad.
try :: Monad m => SyncSF (ExceptT e m) cl a b -> SyncExcept m cl a b e Source #
Enter the monad context in the exception for |SyncSF|s in the |ExceptT| monad.
once :: Monad m => (a -> m e) -> SyncExcept m cl a b e Source #
Within the same tick, perform a monadic action, and immediately throw the value as an exception.
once_ :: Monad m => m e -> SyncExcept m cl a b e Source #
A variant of |once| without input.
step :: Monad m => (a -> m (b, e)) -> SyncExcept m cl a b e Source #
Advances a single tick with the given Kleisli arrow, and then throws an exception.
keepFirst :: Monad m => SyncSF m cl a a Source #
Remembers and indefinitely outputs the first input value.
timer :: (Monad m, TimeDomain td, Ord (Diff td)) => Diff td -> BehaviorF (ExceptT () m) td a (Diff td) Source #
Throws an exception after the specified time difference, outputting the remaining time difference.
scaledTimer :: (Monad m, TimeDomain td, Fractional (Diff td), Ord (Diff td)) => Diff td -> BehaviorF (ExceptT () m) td a (Diff td) Source #
Like timer
, but divides the remaining time by the total time.
runMSFExcept :: MSFExcept m a b e -> MSF (ExceptT e m) a b #