What does the suspend function mean in a Kotlin Coroutine?

I’m reading Kotlin Coroutine and know that it is based on suspend function. But what does suspend mean? Coroutine or function gets suspended? From https://kotlinlang.org/docs/reference/coroutines.html Basically, coroutines are computations that can be suspended without blocking a thread I heard people often say “suspend function”. But I think it is the coroutine who gets suspended because … Read more