Module

Control.Bind.Indexed

#IxBind

class (IxApply m) <= IxBind m  where

Members

  • ibind :: forall a b x y z. m x y a -> (a -> m y z b) -> m x z b

#(:>>=)

Operator alias for Control.Bind.Indexed.ibind (left-associative / precedence 1)

#ibindFlipped

ibindFlipped :: forall m a b x y z. IxBind m => (a -> m y z b) -> m x y a -> m x z b

#(=<<:)

Operator alias for Control.Bind.Indexed.ibindFlipped (right-associative / precedence 1)

#composeiKleisli

composeiKleisli :: forall m a b c x y z. IxBind m => (a -> m x y b) -> (b -> m y z c) -> a -> m x z c

#(:>=>)

Operator alias for Control.Bind.Indexed.composeiKleisli (right-associative / precedence 1)

#composeiKleisliFlipped

composeiKleisliFlipped :: forall m a b c x y z. IxBind m => (b -> m y z c) -> (a -> m x y b) -> a -> m x z c

#(<=<:)

Operator alias for Control.Bind.Indexed.composeiKleisliFlipped (right-associative / precedence 1)

#IxDiscard

class IxDiscard a  where

Members

  • idiscard :: forall k f b (x :: k) (y :: k) (z :: k). IxBind f => f x y a -> (a -> f y z b) -> f x z b

Instances

Re-exports from Control.Apply.Indexed

#IxApply

class (IxFunctor m) <= IxApply m  where

Members

  • iapply :: forall a b x y z. m x y (a -> b) -> m y z a -> m x z b

#IxFunctor

class IxFunctor f  where

Members

  • imap :: forall a b x y. (a -> b) -> f x y a -> f x y b

#ivoidRight

ivoidRight :: forall f a b x y. IxFunctor f => a -> f x y b -> f x y a

#ivoidLeft

ivoidLeft :: forall f a b x y. IxFunctor f => f x y a -> b -> f x y b

#ivoid

ivoid :: forall f a x y. IxFunctor f => f x y a -> f x y Unit

#iapplySecond

iapplySecond :: forall m a b x y z. IxApply m => m x y a -> m y z b -> m x z b

#iapplyFirst

iapplyFirst :: forall m a b x y z. IxApply m => m x y a -> m y z b -> m x z a

#(<*:)

Operator alias for Control.Apply.Indexed.iapplyFirst (left-associative / precedence 4)

#(<$:)

Operator alias for Data.Functor.Indexed.ivoidRight (left-associative / precedence 4)

#(:*>)

Operator alias for Control.Apply.Indexed.iapplySecond (left-associative / precedence 4)

#(:$>)

Operator alias for Data.Functor.Indexed.ivoidLeft (left-associative / precedence 4)

Modules