Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ suspend fun fetchDocs() { // Dispatchers.Main
}

suspend fun get(url: String) = withContext(Dispatchers.IO) {
/* ... */ /* [START_EXCLUDE silent] */ ; "result" /* [END_EXCLUDE] */
/* ... */
// [START_EXCLUDE silent]
"result"
// [END_EXCLUDE]
}
// [END android_kotlin_coroutines_adv_suspend]

Expand Down
Loading