Wrappers for vapply
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)
A vector of type matching the intended value in the function name.
A vector of values
A function to apply to each element in vector .x
Additional arguments passed to .f
Logical, if TRUE
returns names of .x
(Note: If .x
does not
have any names, they will be set to the values)
These are simply wrappers for base::vapply()
to shorten lines.
Each function is designed to use specific vector types:
integer
double
character
logical
complex
Date