http://confluence.jetbrains.net/display/Kotlin/Grammar#Grammar-Precedence gives the operator precedence table for Kotlin, including the operators with a type on the right-hand side, :, as and as?, which have precedence in between the multiplication and prefix operators.

Is there a reason for giving them that particular precedence? I can't offhand think of a situation where it would be necessary/advantageous; what am I missing?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

We wanted to avoid parentheses in cases where something has to be cast and then added/checked for "in" etc

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.