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)

Try the fasttime package in your browser

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

fasttime documentation built on March 18, 2022, 5:10 p.m.