It seems like the common pattern of taking/returning Int (ie ByteString.hGet and Data.List.length) is contrary to the Haskell pattern of using strongly-descrbing types, since many of these cases can only handle positive numbers. Would it not be better to use Word, or is there a reason these functions are partial on Int?
|
|
|||
| show 1 more comment |
|
It is true that the expressiveness of the Haskell type system encourages users to assign precise types to entities they define. However, seasoned Haskellers will readily acknowledge that one must strike a balance between ultimate type precision (which besides isn't always attainable given the current limits of Haskell type system) and convenience. In short, precise types are only useful to a point. Beyond that point, they often just cause extra bureaucracy for little to no gain. Let's illustrate the problem with an example. Consider the factorial function. For all
We seal this datatype inside a module that doesn't export the constructor, to make it abstract, and make it an instance of the all the relevant type classes that
The type of Another problem is that when introducing a new, more precise type, you often end up having to duplicate all manner of library functions. For instance, if you introduce the type One final point is that one shouldn't consider Though I make a point guarding against excessive type proliferation, I do acknowledge that introducing a type of |
||||
|
|
|
The same reasoning applies as in C. The reason to use more precise types is to prevent mistakes. Mistakes, in this case, such as trying to use negative numbers where they are not meaningful. But the behaviour of Look at this:
Instead of making mistakes impossible to commit, you have made them impossible to detect. With What would be valuable is an unsigned type that reacts to over- or underflow by throwing an exception. That still wouldn't make mistakes impossible, but it would make them easier to detect. However, it would come at a performance cost.* I don't know if it's possible to rule them out at compile time, but it doesn't seem easy. * At least, x86 requires an extra instruction -- after every operation! -- to check whether over- or underflow occured. I don't know if there's an architecture that does it "for free", though it would be nice. Or maybe a distinguished NaN value like we have for floating point numbers (perhaps instead of the most negative number) which would be used to denote unrepresentable values... |
||||
|
|
|
My first guess is that unsigned arithmetic has some issues that would cause stupid bugs if you'r not paying attention:
It will have some issues in polymorphic functions that appears to be correct:
Using a standard length function:
And using a length function returing
And, of course, if those functions returned |
|||
|
|
Intarguments (again by historical accident, at least partially). For example, all the low-level indexing operations of GHC's array implementation useInt#indices. – Daniel Fischer Sep 14 '12 at 22:10Naturaltype corresponding toInteger? >:[ This is a perpetual source of annoyance to me. – C. A. McCann Sep 14 '12 at 22:21fromIntegerwould either have to behave oddly--returning the absolute value of its argument, or something--or it would have to be partial. There's no obvious way to write a numeric type that would give you a type error for negative literals. (Maybe with rebindable syntax to change the meaning of negate? I don't know...) – Tikhon Jelvis Sep 15 '12 at 1:54