printWithNumbers           package:RBioinf           R Documentation

_P_r_i_n_t _a _f_u_n_c_t_i_o_n _w_i_t_h _l_i_n_e _n_u_m_b_e_r_s

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

     A function to print a function together with relevant line
     numbers. These can be used to decide where to set 'trace'
     functions etc.

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

     printWithNumbers(f)

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

       f: Any R function. 

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

     The function is printed, all lines that correspond to potential
     break points in the code are numbered.

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

     The function is invoked primarily for its side effect; the
     printing of the function with line numbers. However, the character
     vector is returned and could be used as input for other tools.

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

     R. Gentleman

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

     'trace',  'capture.output'

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

      printWithNumbers(convertMode)

