xtraakp.blogg.se

Kotlin list example
Kotlin list example











kotlin list example

Understanding Configuration and Execution.Sharing Build Logic between Subprojects.Declaring Dependencies between Subprojects.Otherwise you can just go with your extension function or whatever makes you feel happy. I am not a performance expert, but for most of the use cases I don't really see a reasonable benefit of reusing an existing list instead of just simply cloning it (if you really need to keep the elements for some reason) and speaking of performance itself, the JVM almost always does a good job anyway.Ĭonclusion: What I would suggest is to keep it on 2 lines if you really need it or design your code in a way so that you completely avoid the need for clear/addAll.

kotlin list example

I would suggest to look at some core functional programming principles which will get you rid of the clear/addAll concerns completely :-). If you use mutable lists a lot, which are being cleared and their elements are being copied between each other, again, it seem to me as an over-use of mutable state, which makes your code difficult to reason about. If you use this design pattern very often, it seems to me that there is something quite wrong in your overall design of your application/class and here I totally agree with the "I hope there's no such method" comment by you don't use it often, I think that leaving it on 2 lines of code makes it much more readable.Ĭlearing the "listOfChecklist" makes sense only if "newlist" gets cleared at some point too, otherwise you could just keep the reference like: "listOfChecklist = newlist" and boom! You're done. If you really feel the need to merge these 2 operations into one line of code, it suggests you use this very often. My answer will be rather philosophical, so here are my thoughts:













Kotlin list example