standardGeneric             package:base             R Documentation

_F_o_r_m_a_l _M_e_t_h_o_d _S_y_s_t_e_m _P_l_a_c_e_h_o_l_d_e_r_s

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

     These routines are primitives used with the `methods' package.
     They should not be used without it and do not need to be called
     directly in any case.

     `_s_t_a_n_d_a_r_d_G_e_n_e_r_i_c': dispatch the method defined for generic
          function named `f', using the actual arguments in the frame
          from which `standardGeneric' is called.

     `_o_b_j_W_i_t_h_C_l_a_s_s': return the result of setting the class of `object'
          to `value'.  Defined as a separate primitive function because
          R types cannot generally be changed in place.

     `_d_a_t_a_C_l_a_s_s': returns a single string for the class of `object'
          even in the case that the object has an old-style class
          attribute with multiple strings.

     `_t_o_p_i_c_N_a_m_e': the string used internally to find documenation of
          the given type and topic.  Called by the `?' operator and the
          special prompt functions in the methods package.

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

     standardGeneric(f)
     objWithClass(object, value)
     dataClass(object)
     topicName(type, topic)

_A_u_t_h_o_r(_s):

     John Chambers

