Wrappers for vapply
Usage
vap_int(.x, .f, ..., .nm = FALSE)
vap_dbl(.x, .f, ..., .nm = FALSE)
vap_chr(.x, .f, ..., .nm = FALSE)
vap_lgl(.x, .f, ..., .nm = FALSE)
vap_cplx(.x, .f, ..., .nm = FALSE)
vap_date(.x, .f, ..., .nm = FALSE)Details
These are simply wrappers for base::vapply() to shorten lines.
Each function is designed to use specific vector types:
vap_int()integer
vap_dbl()double
vap_chr()character
vap_lgl()logical
vap_cplx()complex
vap_date()Date