R/test2.R

Defines functions test2_if test2_simple

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

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