A question was posted about chained comparison operators and how they are interpreted in different languages.
Chaining comparison operators means that (x < y < z) would be interpreted as ((x < y) && (y < z)) instead of as ((x < y) < z).
The comments on that question show that Python, Perl 6, and Mathematica support chaining comparison operators, but what other languages support this feature and why is it not more common?
A quick look at the Python documentation shows that this feature has been since at least 1996. Is there a reason more languages have not added this syntax?
A statically typed language would have problems with type conversion, but are there other reasons this is not more common?
<and>are not defined for booleans.) – aioobe Nov 3 '10 at 19:29<being a binary operator. – CodesInChaos Nov 3 '10 at 19:36<and>on booleans, it requires the compiler to rewritex > y < ztox > y and y < z. You can't solve this by defining<and>on booleans - but since those aren't defined anyway (that would be nonsensical), this feature could be added to e.g. Java without breaking existing code that tries to order boolean. – delnan Nov 3 '10 at 20:01