Skip to content

Instantly share code, notes, and snippets.

@omkar-tenkale
Last active May 14, 2023 18:25
Show Gist options
  • Save omkar-tenkale/c755c7c6a4ac830d65571d47d707776b to your computer and use it in GitHub Desktop.
Save omkar-tenkale/c755c7c6a4ac830d65571d47d707776b to your computer and use it in GitHub Desktop.
suspend fun calculateSquareRoot(number: Double): Double {
val block: (Continuation<Double>)->Any? = {
// Wait for result in current thread
kotlin.math.sqrt(number)
}
return suspendCoroutineUninterceptedOrReturn(block)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment