is it possible to get `third == null` instead of `...
# announcements
d
is it possible to get
third == null
instead of
IndexOutOfBoundsException
with destructuring?
Copy code
val (first, second, third) = "hello,world".split(",")
o
you can provide your own
componentN
extension functions with this behavior, but you will not like it 🙂 but you can try!