Collections in Kotlin
In addition to the relatively rigid data structures such as arrays, Kotlin also uses other much more flexible data constructs - the so-called collections. Kotlin Collections are generic data structures used to store and manage a group of objects of the same type. They offer a variety of methods and functions to access, manipulate, add or remove the stored items. Collections are not a specialty or invention of Kotlin,
Read more