Skip to content

Is x a difftime object?

Usage

is.difftime(x)

Arguments

x

an R object

Value

TRUE if x is a difftime object, FALSE otherwise.

Examples

is.difftime(as.Date("2009-08-03")) # FALSE
#> [1] FALSE
is.difftime(make_difftime(days = 12.4)) # TRUE
#> [1] TRUE