gitextract_3rrfdcst/ ├── .Rbuildignore ├── .Rinstignore ├── .github/ │ ├── .gitignore │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── config.yml │ │ └── feature_request.md │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── CONDUCT.md ├── CONTRIBUTING.md ├── DESCRIPTION ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── 000.import.R │ ├── 001.bquote.R │ ├── 001.import_future_functions.R │ ├── chunking.R │ ├── condition-handlers.R │ ├── fold.R │ ├── future.apply-package.R │ ├── future_Filter.R │ ├── future_Map.R │ ├── future_apply.R │ ├── future_by.R │ ├── future_eapply.R │ ├── future_kernapply.R │ ├── future_lapply.R │ ├── future_mapply.R │ ├── future_replicate.R │ ├── future_sapply.R │ ├── future_tapply.R │ ├── future_vapply.R │ ├── future_xapply.R │ ├── globals.R │ ├── makeChunks.R │ ├── options.R │ ├── testme.R │ ├── utils,conditions.R │ ├── utils-debug.R │ ├── utils.R │ └── zzz.R ├── README.md ├── cran-comments.md ├── incl/ │ ├── OVERVIEW.md │ ├── future_Filter.R │ ├── future_apply.R │ ├── future_by.R │ ├── future_lapply.R │ ├── future_mapply.R │ ├── make_rng_seeds.R │ └── random_seed_utils.R ├── inst/ │ ├── CITATION │ ├── WORDLIST │ └── testme/ │ ├── _epilogue/ │ │ ├── 001.undo-future.R │ │ ├── 002.undo-state.R │ │ ├── 090.gc.R │ │ ├── 099.session_info.R │ │ ├── 995.detritus-connections.R │ │ └── 999.detritus-files.R │ ├── _prologue/ │ │ ├── 001.load.R │ │ ├── 002.record-state.R │ │ ├── 030.imports.R │ │ ├── 050.utils.R │ │ ├── 090.context.R │ │ ├── 090.options.R │ │ ├── 091.envvars.R │ │ ├── 099.future-setup.R │ │ └── 995.detrius-connections.R │ ├── deploy.R │ ├── run.R │ ├── test-fold.R │ ├── test-future_Filter.R │ ├── test-future_apply.R │ ├── test-future_by.R │ ├── test-future_eapply.R │ ├── test-future_kernapply.R │ ├── test-future_lapply,RNG.R │ ├── test-future_lapply,globals.R │ ├── test-future_lapply.R │ ├── test-future_mapply,globals.R │ ├── test-future_mapply.R │ ├── test-future_replicate.R │ ├── test-future_sapply.R │ ├── test-future_tapply.R │ ├── test-future_vapply.R │ ├── test-globals,tricky2.R │ ├── test-globals,tricky_recursive.R │ ├── test-options,nested.R │ ├── test-rng.R │ ├── test-stdout.R │ └── test-utils.R ├── man/ │ ├── fold.Rd │ ├── future.apply.Rd │ ├── future.apply.options.Rd │ ├── future_apply.Rd │ ├── future_by.Rd │ ├── future_kernapply.Rd │ ├── future_lapply.Rd │ ├── future_mapply.Rd │ └── makeChunks.Rd ├── pkgdown/ │ ├── _pkgdown.yml │ └── _pkgdown.yml.rsp ├── revdep/ │ ├── README.md │ ├── cran.md │ ├── failures.md │ ├── notes.md │ ├── problems.md │ ├── revdepcheck.Renviron │ ├── revdepcheck.init.sh │ ├── run.R │ ├── run.pbs │ └── run.sge ├── tests/ │ ├── incl/ │ │ ├── end.R │ │ └── start,load-only.R │ ├── test-fold.R │ ├── test-future_Filter.R │ ├── test-future_apply.R │ ├── test-future_by.R │ ├── test-future_eapply.R │ ├── test-future_kernapply.R │ ├── test-future_lapply,RNG.R │ ├── test-future_lapply,globals.R │ ├── test-future_lapply.R │ ├── test-future_mapply,globals.R │ ├── test-future_mapply.R │ ├── test-future_replicate.R │ ├── test-future_sapply.R │ ├── test-future_tapply.R │ ├── test-future_vapply.R │ ├── test-globals,tricky2.R │ ├── test-globals,tricky_recursive.R │ ├── test-options,nested.R │ ├── test-rng.R │ ├── test-stdout.R │ └── test-utils.R └── vignettes/ └── future.apply-1-overview.md.rsp