Can GHC or some lint tool tell me when I've provided a type signature for a function that could be more polymorphic?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
GHC doesn't do this, and a quick search of Hackage turns up nothing. A simple, but possibly quite effective way to implement such a thing would be to load the module in GHCi, use I have a feeling such a tool would turn up a lot of false positives in practice. |
|||
|
|
asTypeOfwould be pretty meaningless if it had a more general type :) and less trivially, some type system techniques like regions rely on "unused" class constraints. – Ben Millwood Apr 12 '12 at 13:22