Skip to contents

Get Isolated Functions

Usage

get_isolated_foo(df_edges)

Arguments

df_edges

A data.table with two columns ("from" and "to") representing the dependencies.

Value

A vector of isolated function names.

Examples

if (FALSE) { # \dontrun{
get_isolated_foo(df_edges = data.frame(from = c("a", "b", "c", "d"), to = c("b", "c", NA, NA)))
} # }