is.instant {lubridate} | R Documentation |
Is x a date-time object?
Description
An instant is a specific moment in time. Most common date-time objects (e.g, POSIXct, POSIXlt, and Date objects) are instants.
Usage
is.instant(x)
is.timepoint(x)
Arguments
x |
an R object |
Value
TRUE if x is a POSIXct, POSIXlt, or Date object, FALSE otherwise.
See Also
is.timespan()
, is.POSIXt()
, is.Date()
Examples
is.instant(as.Date("2009-08-03")) # TRUE
is.timepoint(5) # FALSE
[Package lubridate version 1.9.3 Index]