methods                package:utils                R Documentation

_L_i_s_t _M_e_t_h_o_d_s _f_o_r _S_3 _G_e_n_e_r_i_c _F_u_n_c_t_i_o_n_s _o_r _C_l_a_s_s_e_s

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

     List all available methods for an S3 generic function, or all
     methods for a class.

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

     methods(generic.function, class)

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

generic.function: a generic function, or a character string naming a
          generic function.

   class: a symbol or character string naming a class: only used if
          'generic.function' is not supplied.

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

     Function 'methods' can be used to find out about the methods for a
     particular generic function or class.  The functions listed are
     those which _are named like methods_ and may not actually be
     methods (known exceptions are discarded in the code).  Note that
     the listed methods may not be user-visible objects, but often help
     will be available for them.

     If 'class' is used, we check that a matching generic can be found
     for each user-visible object named.  If 'generic.function' is
     given, there is a warning if it appears not to be a generic
     function. (The check for being generic used can be fooled.)

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

     An object of class '"MethodsFunction"', a character vector of
     function names with an '"info"' attribute. There is a 'print'
     method which marks with an asterisk any methods which are not
     visible: such functions can be examined by 'getS3method' or
     'getAnywhere'.

     The '"info"' attribute is a data frame, currently with a logical
     column, 'visible' and a factor column 'from' (indicating where the
     methods were found).

_N_o_t_e:

     This scheme is called _S3_ (S version 3).  For new projects, it is
     recommended to use the more flexible and robust _S4_ scheme
     provided in the 'methods' package.  Functions can have both S3 and
     S4 methods, and function 'showMethods' will list the S4 methods
     (possibly none).

     The original 'methods' function was written by Martin Maechler.

_R_e_f_e_r_e_n_c_e_s:

     Chambers, J. M. (1992) _Classes and methods: object-oriented
     programming in S._ Appendix A of _Statistical Models in S_ eds J.
     M. Chambers and T. J. Hastie, Wadsworth & Brooks/Cole.

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

     'S3Methods', 'class', 'getS3method'.

     For S4, 'showMethods', 'Methods'.

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

     require(stats)

     methods(summary)
     methods(class = "aov")
     methods("[[")    # uses C-internal dispatching
     methods("$")
     methods("$<-")   # replacement function
     methods("+")     # binary operator
     methods("Math")  # group generic
     require(graphics)
     methods("axis")  # looks like it has methods, but not generic
     ## Not run: 
     methods(print)   # over 100
     ## End(Not run)
     ## --> help(showMethods) for related examples

