Removes tracing from all function calls in a package that were previously traced by trace_package()
.
Details
This function reverses the effects of trace_package
by removing all tracing from the specified package's functions.
Examples
if (FALSE) { # \dontrun{
local({
trace_package("graphics", funign = "plot.default")
on.exit(untrace_package("graphics"), add = TRUE)
plot(1:10)
})
} # }