What is the purpose of having coroutine-specific functions?

47 Views Asked by At

We can't use every and verify with coroutines because they don't take suspend functions as parameters. We have to use coEvery and coVerify instead.

But why can't we use coEvery and coVerify with non-suspend functions? Why can't every accept suspend functions (other than because it doesn't have the "suspend" keyword in its parameter list)?

My thinking is that if we could use coEvery with non-suspend functions, surely there would be no need to have separate functions, and just rename coEvery to every. But there must be something I'm missing in my understanding.

0

There are 0 best solutions below