Is there any plan to support de-structuring nested...
# announcements
r
Is there any plan to support de-structuring nested classes which implement
component...
in the same line? So that something like the following would work:
Copy code
val (a, (b, c)) = 1 to (2 to 3)
6
🔥 5
h
Also, is it possible to do de-structring through delegation? Something like
val (a,b) by functionReturnsPair()
.