Hi, I'm looking for the kotlin equivalent of ```Ma...
# android
l
Hi, I'm looking for the kotlin equivalent of
Copy code
Map<Class<? extends AbstractCode>
I tried
Class<? : AbstractCode>
and
Class<Any : AbstractCode>
.Can someone help me please?
m
Try using the
out
modifier:
Copy code
Class<out AbstractCode>
l
Thanks boss