EVOLUTION-MANAGER
Edit File: namespace.R
## ---- include = FALSE--------------------------------------------------------- knitr::opts_chunk$set(comment = "#>", collapse = TRUE) ## ----------------------------------------------------------------------------- #' @exportS3Method pkg::generic generic.foo <- function(x, ...) { } ## ---- eval = FALSE------------------------------------------------------------ # my_function <- function(x, y) { # pkg::fun(x) * y # } ## ----------------------------------------------------------------------------- #' @importFrom pkg fun my_function <- function(x, y) { fun(x) * y } ## ----------------------------------------------------------------------------- #' @importFrom pkg fun1 fun2 #' @importFrom pkg2 fun3 #' @importFrom pkg3 fun4 NULL