If a method calls for an Array<Any> and I ha...
# getting-started
d
If a method calls for an Array<Any> and I have an Iterable, how can I turn it into an Array?
k
deinspanjer:
iterable.toList().toTypedArray()
d
Ah, thanks, was missing the Typed part