R/elementwise_functions.R

Defines functions is.na.lvec

Documented in is.na.lvec

#' Simple elementwise functions
#'
#' These are implementations for \code{\link{lvec}} object for their regular
#' R counterparts.
#' 
#' @param x an object f type \code{\link{lvec}}
#'
#' @return 
#' Returns an \code{\link{lvec}} of the same length as the input.
#' 
#' @export
is.na.lvec <- function(x) {
  elementwise(x, is.na)
}

Try the ldat package in your browser

Any scripts or data that you put into this service are public.

ldat documentation built on March 26, 2020, 7:59 p.m.