Home
last modified time | relevance | path

Searched refs:fibBlocking (Results 1 – 2 of 2) sorted by relevance

/external/kotlinx.coroutines/ui/kotlinx-coroutines-javafx/test/guide/
Dexample-ui-blocking-03.kt81 fibBlocking(x) in <lambda>()
84 fun fibBlocking(x: Int): Int = method
85 if (x <= 1) x else fibBlocking(x - 1) + fibBlocking(x - 2)
/external/kotlinx.coroutines/ui/
Dcoroutines-guide-ui.md510 the original `fib` function to `fibBlocking` and defining `fib` with `withContext` wrapper on top o…
514 fibBlocking(x)
517 fun fibBlocking(x: Int): Int =
518 if (x <= 1) x else fibBlocking(x - 1) + fibBlocking(x - 2)