R/rdname.R

Defines functions times add

Documented in add times

#' Basic arithmetic
#'
#' @param x,y numeric vectors.
#' @name arith
NULL
#> NULL

#' @rdname arith
add <- function(x, y) x + y

#' @rdname arith
times <- function(x, y) x * y
Lightbridge-AI/lbr documentation built on Dec. 27, 2021, 8:09 p.m.