Skip to content

Instantly share code, notes, and snippets.

@mattrob33
Last active March 10, 2022 15:22
Show Gist options
  • Save mattrob33/d75892e26f02a1bce9ce38da62231eb1 to your computer and use it in GitHub Desktop.
Save mattrob33/d75892e26f02a1bce9ce38da62231eb1 to your computer and use it in GitHub Desktop.
fun <T, R> Iterable<T>.map(transform: (T) -> R): List<R>
fun <T, R> Flow<T>.map(transform: suspend (T) -> R): Flow<R>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment