Is it correct to say then that `==` operator is ba...
# language-proposals
i
Is it correct to say then that
==
operator is based on
?:
, because
a == b
is a shorter form of
a?.equals(b) ?: (b === null)
?