immutable list

  • January 25, 2024
  • 1min read

Effective Transformations of Immutable Lists in Kotlin

In Kotlin, filtering an immutable list (read-only list) does not require creating additional copies. The filter function in Kotlin already creates a

Read More
×