grapes-w-slash-o-grapes.Rd
Returns the elements in vector x that are not in vector y.
x %w/o% y
A vector.
A vector to compare.
Elements of x that are not in y.
1:5 %w/o% c(2, 4) #> [1] 1 3 5 letters[1:5] %w/o% c("b", "d") #> [1] "a" "c" "e"