I'm trying to understand if there's a fundamental reason for why Hoogle and Hayoo aren't matching, for instance
(b -> c) -> (b' -> c') -> (b, b') -> (c, c')
to
a b c -> a b' c' -> a (b, b') (c, c')
which happens to be the type of Control.Arrow.***
:
(***) :: a b c -> a b' c' -> a (b, b') (c, c')
— is this likely just something that's as-of-yet unimplemented, or is there something fundamental that is preventing this sort of type based search from ever being implemented?