ts/man/ts_null.Rd
2025-02-24 14:35:02 +13:00

19 lines
359 B
R

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/types.R
\name{ts_null}
\alias{ts_null}
\title{Null type}
\usage{
ts_null()
}
\value{
A ts object that only accepts \code{NULL}.
}
\description{
This is a type that only accepts \code{NULL}. For function return types, use \code{ts_void}.
}
\examples{
x <- ts_null()
x$check(NULL)
}