

args {base}                                  R Documentation

_A_r_g_u_m_e_n_t _L_i_s_t _o_f _a _F_u_n_c_t_i_o_n

_U_s_a_g_e_:

     args(name)

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

    name: an interpreted function.  If `name' is a character
          string then the function with that name is found
          and used.

_V_a_l_u_e_:

     A function with identical formal argument list but an
     empty body.  This function is mainly used interac-
     tively.  For programming, use `formals' instead.

_S_e_e _A_l_s_o_:

     `formals', `help'.

_E_x_a_m_p_l_e_s_:

     args(c) #-> NULL (c is a 'primitive' function).
     args(plot.default)

