Rev 80066 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/builtins.Rd% Part of the R package, https://www.R-project.org% Copyright 1995-2007 R Core Team% Distributed under GPL 2 or later\name{builtins}\alias{builtins}\title{Returns the Names of All Built-in Objects}\description{Return the names of all the built-in objects. These are fetcheddirectly from the symbol table of the \R interpreter.}\usage{builtins(internal = FALSE)}\arguments{\item{internal}{a logical indicating whether only \sQuote{internal}functions (which can be called via \code{\link{.Internal}}) shouldbe returned.}}\details{\code{builtins()} returns an unsorted list of the objects in thesymbol table, that is all the objects in the base environment.These are the built-in objects plus any that have been addedsubsequently when the base package was loaded. It is less confusingto use \code{ls(baseenv(), all.names = TRUE)}.\code{builtins(TRUE)} returns an unsorted list of the names of internalfunctions, that is those which can be accessed as\code{.Internal(\var{foo}(...))} for \var{foo} in the list.}\value{A character vector.}\keyword{utilities}