Quick question, trying to figure out if I'm writin...
# getting-started
c
Quick question, trying to figure out if I'm writing redundant code: Does Kotlin's
is
act like Java's
instanceof
, or is it like Java's
getClass().equals()
? Documentation says that with
is
,
We can check whether an object conforms to a given type at runtime
, but that doesn't really answer my question