R/AddSelf.R

#' Add a number to its self
#'
#' Takes in any numeric value and adds it to its self
#' @param x a numeric value to be added to its self
#' @return a number added to its self
#' @export
addself <- function(x){
  x+x
}
mhood115/MikeHoodFinal documentation built on May 29, 2019, 11:05 p.m.