R/add.r

Defines functions add_x

Documented in add_x

#' Add once
#'
#' @description Adds the input to itself
#'
#' @param x Double or Integer
#'
#' @return x+x
#' @export
#'
#' @examples
#' add_x(2)
#'
add_x= function(x){
  x+x
}
SticsRPacks/sandbox documentation built on May 25, 2019, 4:01 a.m.