Haskell has infix, infixr, infixl to define infix function fixity and precedence, but is there anything similar in kotlin?
1 Like
No, there isn’t.
You can understand the invocation sequence without known each function signature (POLA).
See https://kotlinlang.org/docs/reference/functions.html#infix-notation
2 Likes