R/sumRCall.R

#' @name sumRCall
#' @rdname sumR
#'
#' @examples
#' sumRCall(1, 2)
#'
#' @details \code{sumRCall} is an implementation using the \code{.Call} interface.
#'
#' @export
#'
#' @useDynLib sumR sumCall
sumRCall <- function(x, y) {
  res <- .Call("sumCall", x , y)

  return(res)
}
becarioprecario/sumR documentation built on May 19, 2019, 8:21 a.m.