Is there any difference between `<in Any>` a...
# announcements
m
Is there any difference between
<in Any>
and
<Any>
? Nothing can be higher in hierarchy than
Any
anyway.
i
it can be `Any?`: it is a supertype of
Any
m
Oh right, forgot about nullables here. So what about
<in Any?>
vs
Any?
?
i
These seem to be equivalent in terms of what you can do with them.
m
okay, thanks!