<@U1N88P9GU>: `Storage&lt;*&gt;` is equivalent for...
# announcements
i
@dmitriy.m:
Storage<*>
is equivalent for
Storage<out Any>
(
Any
is upperbound of
T
).
out Any
means, that it's unknown what type that storage is capable to store, but that type is subtype of
Any
and you can safely get that value as
Any
from the storage.