|
|
|
|
|
by lkitching
1672 days ago
|
|
> The structure of the code handling this type of div is identical to code handling an actual exception You would never write an exception handler to handle such a failure from div. The divisor being non-zero is a precondition of calling div in the first place, which is something the caller is responsible for upholding. You shouldn't ever need to write an exception handler to catch precondition violations. Do you also write handlers to 'handle' null dereferences? Representing the partiality in the return type is just pushing the responsibility to some code that can't reasonably do anything. > What then happens when I pass a zero? I've already explained this, you obtain a NonZero[Int] from a function fromInt : Int -> Optional[NonZero[Int]]
and you can optionally add an unsafe version with type Int -> NonZero[Int]
> All you did is propagate the issue to somewhere elseYes, the check has to be done somewhere since that is the point of encoding the property in the types. But encoding it in the argument type ensures the check is done before div is called which is where it needs to be done. |
|
This is just your arbitrary preference. There is nothing wrong with going from either perspective. But your exception is completely worse from every quantifiable metric except for your opinionated qualitative metric.
This is functions suffers from the same problem you describe. You're just trying to justify a convention of doing this check before rather than later. Also Your unsafe version is again worse because it will trigger an exception on zero, so I don't see how it helps your argument.>But encoding it in the argument type ensures the check is done before div is called which is where it needs to be done.
This is the core of your argument and it is highly flawed. There is no "need" for it to be done this way. It is simply your preferred convention.
Your argument loses on both fronts. Exceptions are definitively worse and Encoding non zero type safety into the parameter is not necessarily proven to be better.