├── .Rbuildignore ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── requirements.txt ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── aaa.R └── vfile.R ├── README.Rmd ├── README.md ├── inst └── R-conn-ints.pdf ├── man └── vfile.Rd ├── src ├── Makevars ├── init.c └── vfile.c └── tests ├── testthat.R └── testthat └── test-vfile.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/requirements.txt: -------------------------------------------------------------------------------- 1 | ydiff 2 | 3 | -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2025 2 | COPYRIGHT HOLDER: Mike Cheng 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/aaa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/R/aaa.R -------------------------------------------------------------------------------- /R/vfile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/R/vfile.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/README.md -------------------------------------------------------------------------------- /inst/R-conn-ints.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/inst/R-conn-ints.pdf -------------------------------------------------------------------------------- /man/vfile.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/man/vfile.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- 1 | #PKG_CFLAGS += -Wconversion 2 | -------------------------------------------------------------------------------- /src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/src/init.c -------------------------------------------------------------------------------- /src/vfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/src/vfile.c -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-vfile.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coolbutuseless/rconnection/HEAD/tests/testthat/test-vfile.R --------------------------------------------------------------------------------