R-copy/noop.R

#' No Operation Function
#'
#' Function does nothing and returns input. Used for zeroth order tests
#' @param x an object
#' @return the input \code{x}
#' @examples
#' noop(5)
#' @export noop

noop <- function(x) {
  x
}
dmontemayor/Rcricvol documentation built on Sept. 9, 2021, 9:12 a.m.