R/time.R

Defines functions fastDate fastPOSIXct

Documented in fastDate fastPOSIXct

fastPOSIXct <- function(x, tz=NULL, required.components = 3L, fixed=NA)
  if (is.character(x)) .Call(parse_ts, x, required.components, fixed, tz) else .Call(parse_ts, as.character(x), required.components, fixed, tz)

fastDate <- function(x, fixed=NA)
    fastPOSIXct(x, "Date", 3L, fixed=fixed)
s-u/fasttime documentation built on March 31, 2022, 3:09 a.m.