What is the replacement for `monokBindingCatch`, i...
# arrow
g
What is the replacement for
monokBindingCatch
, in this context
Copy code
fun <T>asMono(thunk: () -> Mono<T>): MonoK<T> {
        return monokBindingCatch {
            thunk().k().bind()
        }
}