contents               package:Biobase               R Documentation

_F_u_n_c_t_i_o_n _t_o _r_e_t_r_i_e_v_e _c_o_n_t_e_n_t_s _o_f _e_n_v_i_r_o_n_m_e_n_t_s

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

     The contents method is used to retrieve the values stored in an
     environment.

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

     contents(object, all.names)

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

  object: The environment (data table) that you want to get all
          contents from

all.names: a logical indicating whether to copy all values in
          as.list.environment

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

     A named list is returned, where the elements are the objects
     stored in the environment.  The names of the elements are the
     names of the objects.

     The 'all.names' argument is identical to the one used in
     'as.list.environment'.

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

     R. Gentleman

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

     'as.list.environment'

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

       z <- new.env()
       multiassign(letters, 1:26, envir=z)
       contents(z)

