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