R/not-in.R

Defines functions `%!in%`

#' NOT IN 
#' 
#' Commonly created NOT-IN operator
#' 
#' @param x object on the lhs 
#' @param table object/list on the rhs
#' 
#' @name notin
#' @rdname not-in
#' @export 

`%!in%` <- function(x,table) !`%in%`(x,table)

Try the operator.tools package in your browser

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

operator.tools documentation built on May 1, 2019, 8 p.m.