R/NotIn.R

Defines functions `%notin%`

#' NotIn
#'
#' @name %notin%
#' @usage x \%notin\% y
#' @param x vector to be tested
#' @param y vectore to be tested against
#' @description create an operator being the opposite of %in%
#' @return notin operator
#' @export

`%notin%` <- function(x,y){
  !(x %in% y)
  }
LafontRapnouilTristan/EcophyCofog documentation built on Oct. 16, 2022, 9:37 a.m.