callGeneric             package:methods             R Documentation

_C_a_l_l _t_h_e _C_u_r_r_e_n_t _G_e_n_e_r_i_c _F_u_n_c_t_i_o_n _f_r_o_m _a _M_e_t_h_o_d

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

     A call to 'callGeneric' can only appear inside a method
     definition.  It then results in a call to the current generic
     function.  The value of that call is the value of 'callGeneric'.
     While it can be called from any method, it is useful and typically
     used in methods for group generic functions.

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

     callGeneric(...)

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

     ...: Optionally, the arguments to the function in its next call.

          If no arguments are included in the call to 'callGeneric',
          the effect is to call the function with the current
          arguments. See the detailed description for what this really
          means. 

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

     The name and package of the current generic function is stored in
     the environment of the method definition object.  This name is
     looked up and the corresponding function called.

     The statement that passing no arguments to 'callGeneric' causes
     the generic  function to be called with the current arguments is
     more precisely as follows.  Arguments that were missing in the
     current call are still missing (remember that '"missing"' is a
     valid class in a method signature).  For a formal argument, say
     'x', that appears in the original call, there is a corresponding
     argument in the generated call equivalent to 'x = x'.  In effect,
     this means that the generic function sees the same actual
     arguments, but arguments are evaluated only once.

     Using 'callGeneric' with no arguments is prone to creating
     infinite recursion, unless one of the arguments in the signature
     has been modified in the current method so that a different method
     is selected.

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

     The value returned by the new call.

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

     Chambers, John M. (2008) _Software for Data Analysis: Programming
     with R_ Springer.  (For the R version.)

     Chambers, John M. (1998) _Programming with Data_ Springer (For the
     original S4 version.)

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

     'GroupGenericFunctions' for other information about group generic
     functions; Methods for the general behavior of method dispatch

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

     ## the method for group generic function Ops
     ## for signature( e1="structure", e2="vector")
     function (e1, e2)
     {
         value <- callGeneric(e1@.Data, e2)
         if (length(value) == length(e1)) {
             e1@.Data <- value
             e1
         }
         else value
     }

     ## For more examples
     ## Not run: 
     showMethods("Ops", includeDefs = TRUE)
     ## End(Not run)

