lazyLoad                package:base                R Documentation

_L_a_z_y _L_o_a_d _a _D_a_t_a_b_a_s_e _o_f _R _O_b_j_e_c_t_s

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

     Lazy load a database of R objects.

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

     lazyLoad(filebase, envir = parent.frame(), filter)

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

filebase: The file path to the database, with no extension.

   envir: The environment into which objects are loaded.

  filter: An optional function which when called on a a character
          vector of object names returns a logical vector: only objects
          for which this is true will be loaded.

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

     This is the workhorse function called by the package loader to
     load the code for a package from a database.  The database
     consists of two binary files, 'filebase.rdb' (the objects) and
     'filebase.rdx' (an index).

     The objects are not themselves loaded into 'envir': rather
     promises are created that will load the object from the database
     on first access. (See 'delayedAssign'.)

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

     Luke Tierney

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

     'makeLazyLoading'

