1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/zoned-time.R
\name{is_zoned_time}
\alias{is_zoned_time}
\title{Is \code{x} a zoned-time?}
\usage{
is_zoned_time(x)
}
\arguments{
\item{x}{\verb{[object]}
An object.}
}
\value{
\code{TRUE} if \code{x} inherits from \code{"clock_zoned_time"}, otherwise \code{FALSE}.
}
\description{
This function determines if the input is a zoned-time object.
}
\examples{
is_zoned_time(1)
is_zoned_time(zoned_time_now("America/New_York"))
}
|