Skip to content

Instantly share code, notes, and snippets.

@featzima
Created March 5, 2019 12:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save featzima/96dae24f9268fc23ec11ec266fba2e5c to your computer and use it in GitHub Desktop.
Save featzima/96dae24f9268fc23ec11ec266fba2e5c to your computer and use it in GitHub Desktop.
inline fun <R> Cursor.map(transform: (Cursor) -> R): List<R> {
val result = ArrayList<R>(count)
while (moveToNext()) {
result.add(transform(this))
}
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment