R/not_in.R

#' Function to check if a value is in a set
#'
#' @param x vector to check
#' @param y set to check if data is in
#'
#'
#' @export


`%nin%` <- function(x,y){

	x %in% y == FALSE

}
r4ecology/fiddlr documentation built on May 15, 2019, 9:56 p.m.