R/add_one.R

#' Add one to a number
#' 
#' @param x A number to which you'd like to add 1
#' 
#' @return The number + 1
#' 
#' @export
add_one <- function(x) {
  x + 1
}

add_two <- function(x) {
  x + 2
}
dgrtwo/nofalThesis documentation built on May 15, 2019, 7:28 a.m.