Returns (<R, A>(computation) => ContT<R, M, A>)
The limited continuation.
- <R, A>(computation): ContT<R, M, A>
Parameters
computation: ((exit) => ContT<R, M, R>)
- (exit): ContT<R, M, R>
Parameters
exit: ((a) => Get1<M, R>)
Returns ContT<R, M, R>
Returns ContT<R, M, A>
Captures the continuation up to the nearest enclosing
resetT
, and passes it tocomputation
.