R/not_in.r

Defines functions `%not_in%`

#' Not `in`
#'
#' Oh how I was there was a \code{!%in%}, so this does the trick.
#'
#' @inheritParams base::`%in%`
#'
#' @export
#'
`%not_in%` <- function(x, table) {
  !(`%in%`(x, table))
}
baslat/sak documentation built on April 14, 2025, 4:14 p.m.