R/template-foo.R

Defines functions Foo

Documented in Foo

#' Foo
#'
#' Sum function.
#'
#' @author Ivan Jacob Agaloos Pesigan
#' @param x Numeric.
#' @param y Numeric.
#' @export
#' @family Template Functions
#' @keywords template
Foo <- function(x, y) {
  stopifnot(
    is.numeric(x),
    is.numeric(y)
  )
  return(x + y)
}
jeksterslab/template documentation built on July 1, 2023, 4:03 p.m.