Closed RobertASmith closed 8 months ago
Then loop through functions:
nodes <- data.table::data.table(
node = funs
, type = "function"
)
funs <- # insert list of functions here...
pkg_env <- environment()
edgeDT <- data.table::rbindlist(
lapply(
X = funs
, FUN = .called_by
, all_functions = funs
, pkg_env = pkg_env
)
, fill = TRUE
)