Is there a way to clone a `Continuation<T>` ...
# coroutines
h
Is there a way to clone a
Continuation<T>
implemented by the state machine? Use case: I want to call the same continuation more than once, each time from the same spot, so that I don't want
resume
to modify
label
. My current horrible piece of s workaround is to save the
label
through reflection,
resume
the continuation and, once it returns, restore the
label
.