builtins                package:base                R Documentation

_R_e_t_u_r_n_s _t_h_e _N_a_m_e_s _o_f _A_l_l _B_u_i_l_t-_i_n _O_b_j_e_c_t_s

_D_e_s_c_r_i_p_t_i_o_n:

     Return the names of all the built-in objects.  These are fetched
     directly from the symbol table of the R interpreter.

_U_s_a_g_e:

     builtins(internal = FALSE)

_A_r_g_u_m_e_n_t_s:

internal: a logical indicating whether only 'internal' functions (which
          can be called via '.Internal') should be returned.

_D_e_t_a_i_l_s:

     'builtins()' returns an unsorted list of the objects in the symbol
     table, that is all the objects in the base environment. These are
     the built-in objects plus any that have been added subsequently
     when the base package was loaded.  It is less confusing to use
     'ls(baseenv(), all=TRUE)'.

     'builtins(TRUE)' returns an unsorted list of the names of internal
     functions, that is those which can be accessed as
     '.Internal(foo(args ...))' for foo in the list.

_V_a_l_u_e:

     A character vector.

