R/uj.R

Defines functions uj

Documented in uj

uj <- function(x, y) {
  if(is.null(attributes(y)$key) & is.null(attributes(x)$key)) {
    return(merge(x,y, all=TRUE))
  } else {
    return(lj(x, y, keep.y=TRUE))
  }
}
HikaGenji/fql documentation built on April 12, 2021, 8:36 a.m.