R/test1.R

Defines functions test1_if test1_simple

#' @export
test1_simple <- function(x) {
  x
}

#' @export
test1_if <- function(x) {
  if (TRUE) {
    x
  } else {
    NULL
  }
}
DavisVaughan/testidentical documentation built on Feb. 23, 2022, 12:03 a.m.