Search notes:

R function: is.name

is.name is identical to is.symbol
q <- as.name   ('foo');
r <- as.integer( 42  );

is.name(q);
#
#  TRUE

is.name(r);
#
#  FALSE
Github repository about-R, path: /functions/is/name.R

See also

as.name
Index to (some) R functions

Index