Skip to content

Instantly share code, notes, and snippets.

@cbeyls
cbeyls / KotlinFunctions.md
Last active February 28, 2025 09:59
Comparison of Kotlin functions: also, apply, let, run, with
Function Function type Target passed as Returns
also Extension it Target
apply Extension this Target
let Extension it Block return value
run Extension this Block return value
with Regular this Block return value