R/RcppExports.R
add_numbers.Rd
Retrieve a function defined inline from the package's header and surface it into R.
add_numbers(x, y)
A numeric vector.
numeric
A single numeric value.
A numeric vector that is incremented by a single value.
numeric vector
x = 1:5 y = add_numbers(x, 2) y #> [1] 3 4 5 6 7