├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── DESCRIPTION ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R ├── build_calls.R ├── build_placeholder_fun.R ├── deparse.R ├── doubt.R ├── register_ops.R ├── utils.R └── zz.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── doubt.Rproj ├── man ├── figures │ ├── logo.png │ └── logo.svg ├── help.Rd └── register_dubious_syntaxes.Rd └── tests ├── testthat.R └── testthat └── test-doubt.R /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/LICENSE.md -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/build_calls.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/build_calls.R -------------------------------------------------------------------------------- /R/build_placeholder_fun.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/build_placeholder_fun.R -------------------------------------------------------------------------------- /R/deparse.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/deparse.R -------------------------------------------------------------------------------- /R/doubt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/doubt.R -------------------------------------------------------------------------------- /R/register_ops.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/register_ops.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/utils.R -------------------------------------------------------------------------------- /R/zz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/R/zz.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/cran-comments.md -------------------------------------------------------------------------------- /doubt.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/doubt.Rproj -------------------------------------------------------------------------------- /man/figures/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/man/figures/logo.png -------------------------------------------------------------------------------- /man/figures/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/man/figures/logo.svg -------------------------------------------------------------------------------- /man/help.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/man/help.Rd -------------------------------------------------------------------------------- /man/register_dubious_syntaxes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/man/register_dubious_syntaxes.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-doubt.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moodymudskipper/doubt/HEAD/tests/testthat/test-doubt.R --------------------------------------------------------------------------------