Lucy Linder
DERLIN.

DERLIN.

Follow
homeAbout MeKotlin is funnewsletter
Series

Kotlin is `fun`

Let's deep dive into Kotlin functions, from the simple theory to the more advanced concepts of extension functions and lambda receivers.

Articles in this series

Kotlin is `fun` - Some cool stuff about Kotlin functions

Mar 6, 20235 min read

About the Series Let's deep dive into Kotlin functions, from the simple theory to the more advanced concepts of extension functions and lambda...

Kotlin is `fun` - Some cool stuff about Kotlin functions

Kotlin is `fun` - Function types, lambdas, and higher-order functions

Mar 13, 20237 min read

Kotlin treats functions as first-class citizens. First-class means functions can be stored in variables and data structures and can be passed as...

Kotlin is `fun` - Function types, lambdas, and higher-order functions

Kotlin is `fun` - extension functions

Mar 20, 20234 min read

Kotlin provides the ability to extend a class or an interface with new functionality without having to inherit from the class or use design patterns...

Kotlin is `fun` - extension functions

Kotlin is `fun` - lambdas with receivers

Apr 11, 20232 min read

As we already covered, Kotlin provides the ability to extend a class or an interface with new functionality without having to inherit from the class...

Kotlin is `fun` - lambdas with receivers