R/notin.R

#' A Not In Function
#'
#' This function is the opposite of the %in% function.
#'
#' @param x a character string
#'
#' @keywords notin
#' @export

%notin%' <- function(x, table) match(x, table, nomatch = 0) == 0
Spoted21/tt documentation built on May 9, 2019, 1:53 p.m.