May I ask a question? What’s the point of these ex...
# android
h
May I ask a question? What’s the point of these extension methods in the source code of _Collections.kt? Occasionally find them while reading codes, a little bit confused😶
g
you can do this for simple destructuring first 5 items of any list:
Copy code
val (first, second, third) = someList
Also not related to #android, #getting-started is better place for such questions
h
@gildor Thx for reply :) I’ll pay attention next time😅