Kotlin Collections
$count++; if($count == 1) { include "../mobilemenu.php"; } if ($count == 2) { include "../sharemediasubfolder.php"; } ?>
Collections are a container of data. Let's say you want to represent a collection of fruits, or a collection of vegetables, we can use the collections framework. Kotlin has both mutable and immutable collections.
Mutable collections can be modified and operations on them will not create a new collection.
Immutable collections will create a new collection when you perform operations on them.
Follow are important collection in Kotlin: