Didn't know `@RestrictSuspension`! What is it good...
# coroutines
m
Didn't know
@RestrictSuspension
! What is it good for? Is there an article about it? 😮
o
Best example appears to be the sequence builder, where you create a synchronous coroutine rather than async, and therefore can't use things like
delay
.
m
Thanks, will check it out
e
r
@Marc Knaup an example real applied use case is restricting side effects and in general control compilation in areas of your application which arrow will use in the fx system https://github.com/arrow-kt/arrow/pull/1263