purescript-indexed-monad
purescript-indexed-monad copied to clipboard
Add Indexed version of a Natural Transformation
trafficstars
Something simple like
module Data.Indexed.NaturalTransformation where
type IndexedNaturalTransformation m n = forall x y a. m x y a -> n x y a
infixr 4 type IndexedNaturalTransformation as ~~>