List, Map & Set
Immutable and mutable collection operations, filtering and sorting.
1
list map set
2Immutable List Operations in Kotlin
Immutable lists created by listOf cannot be modified after creation. A Kotlin example with source code and sample output.
list map set
3Mutable List Operations in Kotlin
Mutable List Operations in Kotlin: a complete example program with source code and sample output, explained step by step.
list map set
4Set Operations in Kotlin
Set stores unique elements. A Kotlin example with source code and sample output.
list map set
5Map Operations in Kotlin
A Kotlin example program demonstrating Map Operations, complete with the source code and expected sample output.
list map set
6Filtering Collections in Kotlin
filter returns elements matching a condition. A Kotlin example with source code and sample output.
list map set
Sorting Collections in Kotlin
sorted and sortedBy return sorted copies of collections. A Kotlin example with source code and sample output.