<@U7LCPFVKL> commented on <@U5PRA0FLJ>’s file <htt...
# announcements
u
@StavFX commented on @spragg’s file https://kotlinlang.slack.com/files/U5PRA0FLJ/F8UPCTY2J/strange_behaviour_of_elvis_operator.kt: That's because line 3 is actually equivalent to
Copy code
(it?.equals(obj) ?: it) == obj
And not
Copy code
it?.equals(obj) ?: (it == obj)
As you might expect