how can i cancel this operation? ```fun <A> ...
# arrow
c
how can i cancel this operation?
Copy code
fun <A> Kind<ForIO, A>.execute(error: (Error) -> Unit = {}, success: (A) -> Unit): Disposable =
    fix().unsafeRunAsyncCancellable { foldResult(it, error, success) }