MethodsList             package:methods             R Documentation

_M_e_t_h_o_d_s_L_i_s_t _O_b_j_e_c_t_s

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

     These functions create and manipulate `MethodsList' objects, the
     objects used in R to store methods for dispatch. You should not
     call any of these functions from code that you want to port to
     S-Plus.  Instead, use the functions described in the references.

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

     MethodsList(.ArgName, ...)

     makeMethodsList(object, level=1)

     SignatureMethod(names, signature, definition)

     insertMethod(mlist, signature, args, def, whichMethods, fromClass, envir)

     matchArg(object, thisClass, mlist, ev)

     matchArgClass(Class, classes, methods)

     showMlist(mlist, includeDefs = TRUE, inherited = TRUE,
        classes, useArgNames, printTo = stdout() )

     print.MethodsList(x, ...)

     listFromMlist(mlist, prefix = list())

     linearizeMlist(mlist, inherited = TRUE)

     finalDefaultMethod(mlist, fname = "")

     mergeMethods(m1, m2)

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

     Note that `MethodsList' objects represent methods only in the R
     implementation.  You can use them to find or manipulate
     information about methods, but avoid doing so if you want your
     code to port to S-Plus.

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


     `_M_e_t_h_o_d_s_L_i_s_t': Create a MethodsList object out of the arguments.

          Conceptually, this object is a named collection of methods to
          be dispatched when the (first) argument in a function call
          matches the class corresponding to one of the names.  A
          final, unnamed element (i.e., with name `""') corresponds to
          the default method.

          The elements can be either a function, or another
          MethodsList.  In the second case, this list implies
          dispatching on the second argument to the function using that
          list, given a selection of this element on the first
          argument.  Thus, method dispatching on an arbitrary number of
          arguments is defined.

          MethodsList objects are used primarily to dispatch OOP-style
          methods and, in R, to emulate S4-style methods.


     `_S_i_g_n_a_t_u_r_e_M_e_t_h_o_d': construct a MethodsList object containing
          (only) this method, corresponding to the signature; i.e.,
          such that signature[[1]] is the match for the first argument,
          signature[[2]] for the second argument, and so on.  The
          string "missing" means a match for a missing argument, and
          "ANY" means use this as the default setting at this level.

          The first argument is the argument names to be used for
          dispatch corresponding to the signatures.


     `_i_n_s_e_r_t_M_e_t_h_o_d': insert the definition `def' into the MethodsList
          object, `mlist', corresponding to the signature. By default,
          insert it in the slot `which="methods"', but `cacheMethod'
          inserts it into the `which="allMethods"' slot (used for
          dispatch but not saved).


`_m_a_t_c_h_A_r_g, _m_a_t_c_h_A_r_g_C_l_a_s_s': Utility functions to match the object  or
     the class to the elements of a methods list. Used in finding
     inherited methods, and not meant to be called directly.


`_s_h_o_w_M_l_i_s_t': Prints the contents of the MethodsList.  If `includeDefs'
     the signatures and the corresonding definitions will be printed;
     otherwise, only the signatures.

     The function calls itself recursively.  `prev' is the previously
     selected classes.

`_l_i_s_t_F_r_o_m_M_l_i_s_t_F_o_r_P_r_i_n_t': Undo the recursive nature of the methods list,
     making a list of function defintions, with the names of the list
     being the corresponding signatures (designed for printing; for
     looping over the methods, use `listFromMlist' instead).

     The function calls itself recursively:  `prev' is the previously
     selected classes.


`_f_i_n_a_l_D_e_f_a_u_l_t_M_e_t_h_o_d' The true default method for the methods list
     object `mlist' (the method that matches class `"ANY"' for as many
     arguments as are used in methods matching for this generic
     function).

`_m_e_r_g_e_M_e_t_h_o_d_s' Merges the methods in the second MethodsList object into
     the first, and returns the merged result.  Called from
     `getAllMethods'. 

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

     John Chambers

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

     The web page <URL: http://www.omegahat.org/RSMethods/index.html>
     is the primary documentation.

     The functions in this package emulate the facility for classes and
     methods described in Programming with Data, (John M. Chambers,
     Springer, 1998).  See this book for further details and examples.

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

