hey guys... I have a question. how's that expressi...
# announcements
p
hey guys... I have a question. how's that expression translated to kotlin -> Set selectedValues = new HashSet();
m
pentarex: there are no raw types in Kotlin. Straightforward conversion:
Copy code
val selectedValues = hashSetOf<Any?>()
p
thanks it works