|
|
|
|
|
by DonaldPShimoda
257 days ago
|
|
By "it" do you mean delimited continuations? If so, my understanding is that they are the standard mode of interruption in Racket — all error-raising/handling and other continuation forms (call/cc, etc) are implemented in terms of delimited continuations because they're a more general abstraction than the older primitives. You can read about Racket's continuation model and where they're used in §10.4 of the Racket Reference [1]. [1] https://docs.racket-lang.org/reference/cont.html |
|