Skip to content

Instantly share code, notes, and snippets.

@skydoves
Created February 17, 2026 01:14
Show Gist options
  • Select an option

  • Save skydoves/b35f42e55bdad01120c56fd35e873aea to your computer and use it in GitHub Desktop.

Select an option

Save skydoves/b35f42e55bdad01120c56fd35e873aea to your computer and use it in GitHub Desktop.
Kotlin Inline Function
inline fun inlineHigherOrderExample(operation: (Int) -> Int): Int {
return operation(10)
}
val result = inlineHigherOrderExample { it * 2 }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment