# Kotlin's Coroutine Extension Functions

> If get to know something new by reading my articles, don't forget to endorse me on [LinkedIn](https://www.linkedin.com/in/rommansabbir/)

Usages:

```plaintext
scope.toMain{ /*this: CoroutineScope */
// Write your code here
}

scope.toIO{ /*this: CoroutineScope */
// Write your code here
}

scope.toDefault{ /*this: CoroutineScope */
// Write your code here
}

scope.toUnconfined{ /*this: CoroutineScope */
// Write your code here
}
```

%[https://gist.github.com/rommansabbir/0ccce0ffae01c26022e3f0804dda041e] 

Follow Me on LinkedIn

%[https://www.linkedin.com/in/rommansabbir/]
