|
| Org.Org.Semantic.HBase.Category.Monad |
|
|
|
|
|
| Synopsis |
|
|
|
| Documentation |
|
| class FunctorApplyReturn m => Monad m where |
| | Methods | | mbind :: m a -> (a -> m b) -> m b | | | fail :: String -> m a | | defaults to error |
| | | Instances | |
|
|
| (>>=) :: Monad m => m a -> (a -> m b) -> m b |
| same as mbind |
|
| monad_fmap :: Monad m => (a -> b) -> m a -> m b |
| use this for Functor instance definitions |
|
| monad_fapply :: Monad m => m (a -> b) -> m a -> m b |
| use this for FunctorApply instance definitions |
|
| monad_fpassto :: Monad m => m a -> m (a -> b) -> m b |
| use this for FunctorApply instance definitions |
|
| monad_fseq :: Monad m => m a -> m b -> m b |
| use this for FunctorApply instance definitions |
|
| while :: Monad m => m Bool -> m () |
|
| Produced by Haddock version 0.6 |