The R Project SVN R

Rev

Rev 56410 | Rev 68948 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
42333 ripley 1
% File src/library/tools/man/makeLazyLoading.Rd
2
% Part of the R package, http://www.R-project.org
59039 ripley 3
% Copyright 1995-2011 R Core Team
42333 ripley 4
% Distributed under GPL 2 or later
5
 
30349 ripley 6
\name{makeLazyLoading}
56186 murdoch 7
\alias{makeLazyLoading}
30349 ripley 8
\title{Lazy Loading of Packages}
9
\usage{
10
makeLazyLoading(package, lib.loc = NULL, compress = TRUE,
11
                keep.source = getOption("keep.source.pkgs"))
12
}
13
\arguments{
14
  \item{package}{package name string}
15
  \item{lib.loc}{library trees, as in \code{library}}
16
  \item{keep.source}{logical; should sources be kept when saving from source}
17
  \item{compress}{logical; whether to compress entries on the database.}
18
}
19
\description{
43623 hornik 20
  Tools for lazy loading of packages from a database.
30349 ripley 21
}
22
\details{
30986 ripley 23
  A tool to set up packages for lazy loading from a database.  For
43623 hornik 24
  packages other than \pkg{base} you can use
25
  \code{makeLazyLoading(package)} to convert them to use lazy loading.
56410 ripley 26
 
27
  Note that as from \R 2.14.0 this is done when all packages are installed.
30349 ripley 28
}
29
\keyword{utilities}
30355 ripley 30
\author{Luke Tierney and Brian Ripley}
56410 ripley 31
\keyword{internal}
32