R/trivial.R

#' A Trivial Function
#' 
#' Just illustration; nothing really here
#' 
#' @param x,y two values to be summed
#' @return the sum x+y
#' @examples 
#' trivial(2,3)
#' @export
trivial <- function(x,y) {x + y}
ajpete/toyPackage documentation built on May 10, 2019, 8:31 a.m.