is.language: Is an Object a Language Object?

Description Usage Arguments Note References Examples

Description

is.language returns TRUE if x is a variable name, a call, or an expression.

Usage

1

Arguments

x

object to be tested.

Note

A name is also known as ‘symbol’, from its type (typeof), see is.symbol.

This is a primitive function.

References

Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988) The New S Language. Wadsworth & Brooks/Cole.

Examples

1
2
3
4
5
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))

robertzk/monadicbase documentation built on May 27, 2019, 10:35 a.m.