Kotlin style guide recommends to use `==` instead ...
# announcements
g
Kotlin style guide recommends to use
==
instead of elvis operator for nullable booleans:
it?.equals(obj) ?: false || it == obj
->
it?.equals(obj) == true || it == obj
s
Thanks. I wasn’t aware of that in the style guide.