R/add_1.R

#' Add 1
#'
#' @description Add 1 to any number
#' @param x is <numeric> (int or dbl)
#' @return a number that is x + 1 <numeric>
#' @examples
#' add_1(3)
#' # [1] 4
#' @export
add_1 = function(x){
  return(x + 1)
}
stoltzmaniac/chase documentation built on July 2, 2019, 9:42 a.m.