├── .Rbuildignore ├── .codecov.yml ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── no-trace.R ├── rpwnd-package.R ├── scanner.R └── zzz.R ├── README.Rmd ├── README.md ├── data └── rpwnd.R ├── man ├── no_trace.Rd └── rpwnd.Rd ├── rpwnd.Rproj ├── src ├── .gitignore ├── RcppExports.cpp └── pwnd01.cpp └── tests ├── test-all.R └── testthat └── test-rpwnd.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- 1 | 0.1.0 2 | * Initial release 3 | -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/no-trace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/R/no-trace.R -------------------------------------------------------------------------------- /R/rpwnd-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/R/rpwnd-package.R -------------------------------------------------------------------------------- /R/scanner.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/R/scanner.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/README.md -------------------------------------------------------------------------------- /data/rpwnd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/data/rpwnd.R -------------------------------------------------------------------------------- /man/no_trace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/man/no_trace.Rd -------------------------------------------------------------------------------- /man/rpwnd.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/man/rpwnd.Rd -------------------------------------------------------------------------------- /rpwnd.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/rpwnd.Rproj -------------------------------------------------------------------------------- /src/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/src/.gitignore -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/pwnd01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/src/pwnd01.cpp -------------------------------------------------------------------------------- /tests/test-all.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/tests/test-all.R -------------------------------------------------------------------------------- /tests/testthat/test-rpwnd.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hrbrmstr/rpwnd/HEAD/tests/testthat/test-rpwnd.R --------------------------------------------------------------------------------