R/not_in.R

#' notin
#'
#' @param x: vector to check
#' @param y: vector to serve as reference
#'
#' @return
#' @export
#'
#' @examples
#' \dontrun{
#' x <- c()
#' x %!in% y
#' }
'%!in%' <- function(x,y)!('%in%'(x,y))
noaa-garfo/discaRd documentation built on April 17, 2025, 10:32 p.m.