<@U0L8CS35L> `*` means `in Nothing` or `out Any?` ...
# announcements
m
@douglarek
*
means
in Nothing
or
out Any?
type variance. It’s like
?
in Java, which means
capture of ?
.
Any?
means that keys / values of your map are
Any?
, so you can
get(Any?): Any?
and
set(Any?, Any?)
👍 3