#4433: Suboptimal rendering of long type signatures
---------------------------------+------------------------------------------
    Reporter:  osaunders         |       Owner:              
        Type:  bug               |      Status:  new         
    Priority:  normal            |   Component:  GHCi        
     Version:  6.12.3            |    Keywords:              
    Testcase:                    |   Blockedby:              
          Os:  Unknown/Multiple  |    Blocking:              
Architecture:  Unknown/Multiple  |     Failure:  None/Unknown
---------------------------------+------------------------------------------
 At present GHCi displays the type signature of zipWith7 like this:


 {{{
 zipWith7 ::
   (a -> b -> c -> d -> e -> f -> g -> h)
   -> [a]
   -> [b]
   -> [c]
   -> [d]
   -> [e]
   -> [f]
   -> [g]
   -> [h]
 }}}

 Is it possible to could be displayed like this instead?:

 {{{
 zipWith7 ::
   (a -> b -> c -> d -> e -> f -> g -> h)
   -> [a] -> [b] -> [c] -> [d]
   -> [e] -> [f] -> [g] -> [h]
 }}}

-- 
Ticket URL: <http://hackage.haskell.org/trac/ghc/ticket/4433>
GHC <http://www.haskell.org/ghc/>
The Glasgow Haskell Compiler
_______________________________________________
Glasgow-haskell-bugs mailing list
Glasgow-haskell-bugs@haskell.org
http://www.haskell.org/mailman/listinfo/glasgow-haskell-bugs

Reply via email to