Skip to content

Instantly share code, notes, and snippets.

@ozgurg
Created April 15, 2023 23:58
Show Gist options
  • Save ozgurg/5fc4974bc0937fb4c7549eb4af5ad789 to your computer and use it in GitHub Desktop.
Save ozgurg/5fc4974bc0937fb4c7549eb4af5ad789 to your computer and use it in GitHub Desktop.
Kotlin mapTypedArray
inline fun <reified IT, reified OT> Array<IT>.mapTypedArray(transform: (IT) -> OT): Array<OT> {
return map(transform).toTypedArray()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment