Module

Data.Functor.Indexed

Package
purescript-indexed-monad
Repository
garyb/purescript-indexed-monad

#IxFunctor Source

class IxFunctor f  where

Members

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

#ivoid Source

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

#ivoidRight Source

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

#(<$:) Source

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

#ivoidLeft Source

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

#(:$>) Source

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