Not sure about enforcing shortcuts for number comparisons.
It makes sense to omit > 0 in length checks, but more clarity might be good in more math-heavy code.
I added an exception for possibly negative numbers, but perhaps we should just allow deciding this case by case.
Fixes #11
Not sure about enforcing shortcuts for number comparisons. It makes sense to omit
> 0
in length checks, but more clarity might be good in more math-heavy code. I added an exception for possibly negative numbers, but perhaps we should just allow deciding this case by case.