``` fun Any?.matches(obj: Any?) = (this == null || obj == this) ```
u
Copy code
fun Any?.matches(obj: Any?) = (this == null || obj == this)