R/rep.coded.R

Defines functions rep.code

#' @export
rep.code <- function(x, ...) {
  old_class <- class(x)
  attr <- attributes(x)
  res <- NextMethod()
  class(res) <- old_class
  attributes(res) <- attr
  res
}

Try the codelist package in your browser

Any scripts or data that you put into this service are public.

codelist documentation built on April 12, 2025, 2:25 a.m.