├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── pkgdown.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── R ├── ISNA.R ├── R_CheckUserInterrupt.R ├── R_xlen_t.R ├── SEXP.R ├── SEXPTYPE.R ├── allocVector.R ├── coerceVector.R ├── isNumeric.R └── setAttrib.R ├── README.md ├── inst └── WORDLIST └── man ├── ISNA.Rd ├── R_CheckUserInterrupt.Rd ├── R_xlen_t.Rd ├── SEXP.Rd ├── SEXPTYPE.Rd ├── allocVector.Rd ├── coerceVector.Rd ├── figures └── getAttrib.png ├── getAttrib.Rd └── isNumeric.Rd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/pkgdown.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/.github/workflows/pkgdown.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rhistory 2 | *~ 3 | **/*~ 4 | .local 5 | docs 6 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/ISNA.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/ISNA.R -------------------------------------------------------------------------------- /R/R_CheckUserInterrupt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/R_CheckUserInterrupt.R -------------------------------------------------------------------------------- /R/R_xlen_t.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/R_xlen_t.R -------------------------------------------------------------------------------- /R/SEXP.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/SEXP.R -------------------------------------------------------------------------------- /R/SEXPTYPE.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/SEXPTYPE.R -------------------------------------------------------------------------------- /R/allocVector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/allocVector.R -------------------------------------------------------------------------------- /R/coerceVector.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/coerceVector.R -------------------------------------------------------------------------------- /R/isNumeric.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/isNumeric.R -------------------------------------------------------------------------------- /R/setAttrib.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/R/setAttrib.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/README.md -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- 1 | attrib 2 | Rinternals 3 | Roxygen 4 | SEXP 5 | src 6 | struct 7 | -------------------------------------------------------------------------------- /man/ISNA.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/ISNA.Rd -------------------------------------------------------------------------------- /man/R_CheckUserInterrupt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/R_CheckUserInterrupt.Rd -------------------------------------------------------------------------------- /man/R_xlen_t.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/R_xlen_t.Rd -------------------------------------------------------------------------------- /man/SEXP.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/SEXP.Rd -------------------------------------------------------------------------------- /man/SEXPTYPE.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/SEXPTYPE.Rd -------------------------------------------------------------------------------- /man/allocVector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/allocVector.Rd -------------------------------------------------------------------------------- /man/coerceVector.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/coerceVector.Rd -------------------------------------------------------------------------------- /man/figures/getAttrib.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/figures/getAttrib.png -------------------------------------------------------------------------------- /man/getAttrib.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/getAttrib.Rd -------------------------------------------------------------------------------- /man/isNumeric.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HenrikBengtsson/RNativeAPI/HEAD/man/isNumeric.Rd --------------------------------------------------------------------------------