vap {mark} | R Documentation |
Vaps!
Description
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)
Arguments
.x |
A vector of values |
.f |
A function to apply to each element in vector |
... |
Additional arguments passed to |
.nm |
Logical, if |
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
Value
A vector of type matching the intended value in the function name.
See Also
[Package mark version 0.8.0 Index]