#' @export
is_function_traced <- function(object, package_name, function_name, ...) {
UseMethod("is_function_traced")
}
#' @export
is_function_traced.instrumentr_context <- function(object, package_name, function_name, ...) { # nolint
stopifnot(is_scalar_character(package_name))
stopifnot(is_scalar_character(function_name))
.Call(C_context_is_function_traced, object, package_name, function_name)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.