https://kotlinlang.org logo
v

vineethraj49

11/07/2019, 6:08 AM
does
!==
just translate to
!  ==
which is
!=
?
j

Joshy Josh

11/07/2019, 6:11 AM
Referential equality is checked by the === operation (and its negated counterpart !==). a === b evaluates to true if and only if a and b point to the same object. For values which are represented as primitive types at runtime (for example, Int), the === equality check is equivalent to the == check.