R/utils.R

Defines functions `%||%`

`%||%` <- function(left, right){
  if (!is.null(left)){
    return(left)
  }
  right
}

Try the daff package in your browser

Any scripts or data that you put into this service are public.

daff documentation built on Oct. 9, 2023, 1:06 a.m.