knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "README-"
)

functools

CRAN_Status_Badge Downloads from the RStudio CRAN mirror Build Status Build status codecov.io Project Status: Active - The project has reached a stable, usable state and is being actively developed.

functools provides tools for Functional Programming in R. It accomplishes several goals:

functools achieves these goals through three main types of function design patterns:

Installation

You can install the latest development version from CRAN:

install.packages("functools")
````

Or from GitHub with:

```R
if (packageVersion("devtools") < 1.6) {
  install.packages("devtools")
}
devtools::install_github("paulhendricks/functools")

If you encounter a clear bug, please file a minimal reproducible example on GitHub.

Citation

To cite package ‘functools’ in publications use:

Paul Hendricks (2015). functools: Functional Programming in R. R package version 0.2.0. https://CRAN.R-project.org/package=functools

A BibTeX entry for LaTeX users is

@Manual{,
  title = {functools: Functional Programming in R},
  author = {Paul Hendricks},
  year = {2015},
  note = {R package version 0.2.0},
  url = {https://CRAN.R-project.org/package=functools},
}


paulhendricks/functools documentation built on May 24, 2019, 8:41 p.m.