Sequence: lazy evaluation
What is Sequence? A Kotlin Sequence is like a List, but you can only iterate. You cannot index into Sequence. And this restriction produces very efficient ch...
What is Sequence? A Kotlin Sequence is like a List, but you can only iterate. You cannot index into Sequence. And this restriction produces very efficient ch...
List Manipulation
What is it? If you are coming from JavaScript, this concept may sound familiar to you. Otherwise, here is what it means.
Background
Most functional programming has a great support for working with collections and so is Kotlin. If you are coding with Kotlin for sometimes, you might notice ...
To some people, lambda may seem like syntax sugar, but it is more than that. If you have to repeat some codes with minor modification, you can leverage on th...
The unavoidable price of reliability is simplicity – C.A.R Hoare