R/timeser.R

Defines functions times_two_or_three

#' Times a val by 2 or 3
#'
#' Does a thing
#'
#' @name times_two_or_three
#' @param x Unquoted name of set to get.
#' @param which Defaults to 2.
#' @return A value
#' @export

times_two_or_three <- function(x, which = 2) {
  x * which
}
rosseji/humbug documentation built on May 19, 2019, 8:24 a.m.