R/is.na.timeDay.R

Defines functions is.na.timeDay

Documented in is.na.timeDay

#'Missing Values
#'
#'Indicate which elements are missing.
#'
#'
#' @param x the object to be tested.
#' @return A logical vector of the same length as its argument \code{x},
#'containing \code{TRUE} for those elements marked \code{NA} and \code{FALSE} otherwise.
#' @keywords manip
#' @examples
#'is.na(as.timeDay(c("10:30", "11:00")))
#' @method is.na timeDay
#' @export
is.na.timeDay <- function(x)
  return(is.na(x@time))
USGS-R/smwrBase documentation built on Oct. 18, 2022, 9:55 a.m.