When to use Kotlin's standard functions

1 · Daniel Lew · Feb. 12, 2019, 3:22 p.m.
Kotlin comes with several high-level, generic standard functions that apply to any object: let(), run(), with(), apply(), and also(). If you're new to Kotlin you may be wondering when to use them. They're fairly inscrutable; the source reveals a smorgasbord of generics, lambdas, and receivers. There are plenty of articles...