I'm currently studying about frames, environments in R using Advanced R.
But I can't quite understand the last paragraph of this section.
The frame also holds exit handlers created with
on.exit()
, restarts and handlers for the condition system, and which context toreturn()
to when a function completes. These are important internal details that are not accessible with R code.
I know stats, but I'm not good with computer science.
Also, I can't read this paragraph as is.
To my understanding,
1. Each frame holds exit controller(which I think handler means) named on.exit()
.
2. This controller restarts and controls condition system.
3. I can't even understand how to read "and which context to return()
to when a function completes.".
To summarise what I'm not getting is,
1. Are two of above 3 sentences right?
2. What is the meaning of the 3rd sentence? What does "which" refer to? What is the verb of this sentence?
3. What is "condition system"? Is it the same thing with "condition statement"?
As I said before, I have poor cs background.
Thanks in advance.