I'm trying to write a variadic function composition function. Which is basically the (.)
except that the second argument function is variadic. This should allow expressions like:
map even . zipWith (+)
or just
map even . zipWith
Currently what I've reached works if I add IncoherentInstances
and requires a non-polymorphic instance for the first argument function.
{-# LANGUAGE FlexibleInstances, OverlappingInstances, MultiParamTypeClasses,
FunctionalDependencies, UndecidableInstances, KindSignatures #-}
class Comp a b c d | c -> d where
comp :: (a -> b) -> c -> d
instance Comp a b (a :: *) (b :: *) where
comp f g = f g
instance Comp c d b e => Comp c d (a -> b) (a -> e) where
comp f g = comp f . g
Any ideas? Is it even possible?