existsTemp              package:svMisc              R Documentation

_D_e_t_e_r_m_i_n_e _i_f _a _v_a_r_i_a_b_l_e _e_x_i_s_t_s _i_n _T_e_m_p_E_n_v

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

     Does a variable exist in the TempEnv environment?

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

     existsTemp(x, mode = "any")

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

       x: The name of the variable (character string) 

    mode: The mode of the seeked variable 

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

     TRUE if the variable exists in TempEnv (and is of the correct
     mode), FALSE otherwise.

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

     Philippe Grosjean <phgrosjean@sciviews.org>

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

     'TempEnv', 'assignTemp', 'changeTemp', 'getTemp', 'rmTemp',
     'addTemp'

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

     assignTemp("test", 1:10)
     # Check if this variable exists
     existsTemp("test")
     # Remove it
     rmTemp("test")
     # Does it still exist?
     existsTemp("test")

