Rev 8893 | Rev 23613 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{is.language}\alias{is.language}\title{Is an Object a Language Object?}\usage{is.language(x)}\description{\code{is.language} returns \code{TRUE} if \code{x} is either avariable \code{\link{name}}, a \code{\link{call}}, or an\code{\link{expression}}.}\arguments{\item{x}{object to be tested.}}\examples{ll <- list(a = expression(x^2 - 2*x + 1), b = as.name("Jim"),c = as.expression(exp(1)), d = call("sin", pi))sapply(ll, typeof)sapply(ll, mode)stopifnot(sapply(ll, is.language))}\keyword{programming}