swh:1:snp:1d6f9c912933e835b749aef1f8077112982fe84e
Raw File
Tip revision: 9a644c12884525087aa1db3ecf57586b29fb17d8 authored by HwB on 06 June 2011, 00:00:00 UTC
version 0.5-3
Tip revision: 9a644c1
isempty.Rd
\name{isempty}
\alias{isempty}
\title{isempty Property}
\description{
  Determine if an object is empty.
}
\usage{
isempty(x)
}
\arguments{
  \item{x}{an R object}
}
\details{
  An empty object has length zero.
}
\value{
  \code{TRUE} if \code{x} has length 0; otherwise, \code{FALSE}.
}
\examples{
isempty(c(0))            # FALSE
isempty(matrix(0, 1, 0)) # TRUE
}
\keyword{logic}

back to top