R/print.interval.R

Defines functions as.character.interval print.interval

Documented in as.character.interval print.interval

#' print implementation for the class `interval`
#'
#' such objects, for now, only occur in `RECCap` rules, so this function
#' is meant for internal use, mostly -- for now.
#'
#' @param x `interval` objects to print
#' @param ... not used yet
#'
#' @seealso base::print
#'
#' @return the printed object
#' @export
print.interval <- function(x, ...) {
  util_stop_if_not(inherits(x, "interval"))
  if (x$inc_l) { cat("[") } else { cat("(") }
  if (inherits(x$low, "POSIXct")) {
    cat(as.character(x$low, usetz = FALSE))
  } else {
    cat(as.character(x$low))
  }
  cat(";")
  if (inherits(x$upp, "POSIXct")) {
    cat(as.character(x$upp, usetz = FALSE))
  } else {
    cat(as.character(x$upp))
  }
  if (x$inc_u) { cat("]") } else { cat(")") }
  invisible(x)
}

#' `as.character` implementation for the class `interval`
#'
#' such objects, for now, only occur in `RECCap` rules, so this function
#' is meant for internal use, mostly -- for now.
#'
#' @param x `interval` objects to convert
#' @param ... not used yet
#'
#' @seealso base::as.character
#'
#' @return interval as character
#' @export
as.character.interval <- function(x, ...) {
  r <- util_suppress_output(capture.output(print.interval(x, ...)))
  r
}

Try the dataquieR package in your browser

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

dataquieR documentation built on Jan. 8, 2026, 5:08 p.m.