Concept Flow - Equality (== structural vs === referential)
Start
Compare with == ?
Check structural
Return true
True
Return true
No
Return false
First, Kotlin checks structural equality with ==, then referential equality with === if needed, returning true or false accordingly.