fun2wFun            package:widgetInvoke            R Documentation

_A _F_u_n_c_t_i_o_n _T_o _G_e_n_e_r_a_t_e _w_F_u_n _O_b_j_e_c_t_s _F_o_r _A _F_u_n_c_t_i_o_n

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

     This function will take a function name and attempt to create a
     corresponding 'wFun' object for it based off of available
     information about the function.

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

     fun2wFun(funName)

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

 funName: The name of the function to use

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

     This function will first attempt to get the argument list for the
     requested function, and then create a basic/default 'wFun' object
     for this function.  The 'wFun' object can be further manipulated
     by the user, if desired.

     Typically, this function is primarily used internally by
     'createWF'.

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

     An object of class 'wFun', representing available knowledge about
     the requested function.

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

     Jeff Gentry

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

     'createWF', 'widgetInvoke', 'wFun', 'writeWIxml', 'readWIxml'

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

        z <- fun2wFun("apropos")
        funName(z)
        funArgList(z)

