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
R Internals says that Elements of character vectors (CHARSXPs) remain limited to 2^31 - 1 bytes.
Base R has:
> library(stringi); x<-stri_dup("a", 2**30); y <- paste(c(x, x), collapse="") #Error in paste(c(x, x), collapse = "") : result would exceed 2^31-1 bytes
The text was updated successfully, but these errors were encountered:
113d5f3
No branches or pull requests
R Internals says that Elements of character vectors (CHARSXPs) remain limited to 2^31 - 1 bytes.
Base R has:
The text was updated successfully, but these errors were encountered: