#' Shorthand for the opposite of in written in a more intuitive format. Returns true if the item is not in what it is being compared to, and false if it is in it.
#'
#' @param data any data type
#' @return logical
#' @export
#' @examples
#'2 %!in% c(1,3)
#'"b" %!in% c("a","c")
'%!in%' <-Negate(`%in%`)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.