Filtering Kotlin Collections 1. Overview Kotlin collections are powerful data structures with many beneficial methods that put it over and beyond Java collections. We’re going to cover a handful of filtering methods available in enough detail to be able to utilize all of the others that we don’t explicitly cover… Continue Reading kotlin-filter-collection

Overview of Kotlin Collections API 1. Overview In this quick tutorial, we’ll introduce the Kotlin’s Collections API, and we’ll discuss the different collection types in Kotlin and some common operations on collections. 2. Collection vs. Mutable Collection First, let’s take a look at different types of collections in Kotlin. We… Continue Reading kotlin-collections-api