R/not.R

Defines functions not

not <- function(a,b){
    a=toVector(a)
    a=unique(a)
    b=toVector(b)
    b=unique(b)
    a[!(a %in% b)]
}
yikeshu0611/do documentation built on Aug. 5, 2021, 4:17 p.m.