| Safe Haskell | Safe-Inferred |
|---|---|
| Language | Haskell2010 |
Control.Subcategory.Bind
Documentation
class CFunctor m => CBind m where Source #
Minimal complete definition
Nothing
Instances
| CBind Identity Source # | |
| CBind NonEmpty Source # | |
| CBind STM Source # | |
| CBind ReadP Source # | |
| CBind ReadPrec Source # | |
| CBind IntMap Source # | |
| CBind Seq Source # | |
| CBind Set Source # | |
| CBind Tree Source # | |
| CBind IO Source # | |
| CBind HashSet Source # | |
| CBind Maybe Source # | |
| CBind List Source # | |
| CBind (ST s) Source # | |
| CBind (Either a) Source # | |
| CBind (ST s) Source # | |
| Ord k => CBind (Map k) Source # | |
| Monad m => CBind (WrapFunctor m) Source # | |
Defined in Control.Subcategory.Bind Methods (>>-) :: (Dom (WrapFunctor m) a, Dom (WrapFunctor m) b) => WrapFunctor m a -> (a -> WrapFunctor m b) -> WrapFunctor m b Source # cjoin :: (Dom (WrapFunctor m) (WrapFunctor m a), Dom (WrapFunctor m) a) => WrapFunctor m (WrapFunctor m a) -> WrapFunctor m a Source # | |
| (Hashable k, Eq k) => CBind (HashMap k) Source # | |
| Semigroup w => CBind ((,) w) Source # | |
| CBind (WrapMono IntSet :: Type -> Type) Source # | |
Defined in Control.Subcategory.Bind | |
| (CBind m, CBind n) => CBind (Product m n) Source # | |
| CBind ((->) a) Source # | |