R/is.tst.R

Defines functions is.tst

#' Check if \code{x} is an tst object.
#' 
#' @param x an object to be tested.
#' @return TRUE if x is an object of the class sfc and FALSE otherwise.
#' 
#' @export
#' 
#' @examples
#' data( models )
#' is.tst( sim )

is.tst <- function(x) inherits(x,"tst")
AdamElderfield/tst_package documentation built on Dec. 5, 2019, 2:08 a.m.