Update nonAPI.txt for R 4.6#262
Open
CGMossa wants to merge 1 commit into
Open
Conversation
Regenerated with the same command used by the `non-api-call.yml` workflow:
Rscript -e 'cat(tools:::nonAPI, sep = "\n")' | tr -d '\r' | sort -u
The previous list predates R's reclassification of its non-API surface in
R 4.5/4.6: many entries migrated from bare names (e.g. `csduplicated`) to
`Rf_`-prefixed ones (`Rf_csduplicated`), and newer non-API such as the
experimental hashtable functions (`R_mkhashtab`, `R_gethash`, ...) were
added. Generated on macOS with R 4.6.0; run `non-api-call.yml` to confirm
the multi-OS union.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
TODO: replace this line with your own framing, in your own voice.
AI-written details
Summary
nonAPI.txtwith the same command thenon-api-call.ymlworkflow uses:Rscript -e 'cat(tools:::nonAPI, sep = "\n")' | tr -d '\r' | sort -u.csduplicated) toRf_-prefixed ones (Rf_csduplicated), and newer non-API such as the experimental hashtable functions (R_mkhashtab,R_gethash, ...) were added.REQUIRED_NON_APIentries thatbuild.rsre-allows are still present.Notes
tools:::nonAPIis a fixed vector in thetoolspackage, so it should be platform-invariant, but runnon-api-call.ymlto confirm the multi-OS union.Rf_-prefixed migration, not arbitrary churn.Drafted by Claude (claude-opus-4-8). Reviewed by the author.