makeLazyLoading            package:tools            R Documentation

_L_a_z_y _L_o_a_d_i_n_g _o_f _P_a_c_k_a_g_e_s

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

     Tools for lazy loading of packages from a database.

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

     makeLazyLoading(package, lib.loc = NULL, compress = TRUE,
                     keep.source = getOption("keep.source.pkgs"))

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

 package: package name string

 lib.loc: library trees, as in 'library'

keep.source: logical; should sources be kept when saving from source

compress: logical; whether to compress entries on the database.

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

     A tool to set up packages for lazy loading from a database.  For
     packages other than 'base' you can use 'makeLazyLoading(package)'
     to convert them to use lazy loading.

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

     Luke Tierney and Brian Ripley

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

     ## set up package "splines" for lazy loading -- already done
     ## Not run: 
     tools:::makeLazyLoading("splines")
     ## End(Not run)

