R/remove_data.R

Defines functions remove_data.instrumentr_object remove_data

#' @export
remove_data <- function(object, ...) {
    UseMethod("remove_data")
}

#' @export
remove_data.instrumentr_object <- function(object, ...) {
    .Call(C_object_remove_data, object)
    invisible(NULL)
}
PRL-PRG/instrumentr documentation built on Feb. 26, 2021, 5:12 p.m.