R/not_in.R

#' not_in
#'
#' Value matching
#'
#' @param x vector
#' @param table vector
#'
#' @rdname not_in
#'
#' @export
`%not_in%` <- function (x, table) {
  i <- (x %in% table)
  return(!i)
}
BAAQMD/funtools documentation built on June 29, 2022, 4:06 p.m.