R/without.R

Defines functions `%w/o%`

#' x without y
#' Remove y's elements from x.
#'
#' @param x X
#' @param y Y
#' @export
`%w/o%` <- function(x, y) x[!x %in% y]
czxa/hotkeys documentation built on Aug. 5, 2021, 7:30 p.m.