ilya.gorbunov
08/26/2016, 3:31 PMStorage<*>
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.