We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is it possible to evaluate an R function and in case of an error catch the error condition and modify it?
For example I want to evaluate log() on x but x is the character "a"
log()
x
auto log = cpp11::package("base")["log"]; log(x);
Can I catch the error with cpp11 and modify it or pass it to another R function?
The text was updated successfully, but these errors were encountered:
transform
No branches or pull requests
Is it possible to evaluate an R function and in case of an error catch the error condition and modify it?
For example I want to evaluate
log()
onx
butx
is the character "a"Can I catch the error with cpp11 and modify it or pass it to another R function?
The text was updated successfully, but these errors were encountered: