The R Project SVN R

Rev

Rev 74761 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 74761 Rev 76084
Line 1... Line 1...
1
% File src/library/tools/man/makeLazyLoading.Rd
1
% File src/library/tools/man/makeLazyLoading.Rd
2
% Part of the R package, https://www.R-project.org
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2018 R Core Team
3
% Copyright 1995-2019 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{makeLazyLoading}
6
\name{makeLazyLoading}
7
\alias{makeLazyLoading}
7
\alias{makeLazyLoading}
8
\title{Lazy Loading of Packages}
8
\title{Lazy Loading of Packages}
9
\usage{
9
\usage{
10
makeLazyLoading(package, lib.loc = NULL, compress = TRUE,
10
makeLazyLoading(package, lib.loc = NULL, compress = TRUE,
11
                keep.source = getOption("keep.source.pkgs"),
11
                keep.source = getOption("keep.source.pkgs"),
12
                keep.parse.data = getOption("keep.parse.data.pkgs"))
12
                keep.parse.data = getOption("keep.parse.data.pkgs"),
-
 
13
                set.install.dir = NULL)
13
}
14
}
14
\arguments{
15
\arguments{
15
  \item{package}{package name string}
16
  \item{package}{package name string}
16
  \item{lib.loc}{library trees, as in \code{library}}
17
  \item{lib.loc}{library trees, as in \code{library}}
17
  \item{keep.source}{logical; should sources be kept when saving from source}
18
  \item{keep.source}{logical; should sources be kept when saving from source}
18
  \item{keep.parse.data}{logical; should parse data be kept with sources
19
  \item{keep.parse.data}{logical; should parse data be kept with sources
19
    when \code{keep.source} is \code{TRUE}.}
20
    when \code{keep.source} is \code{TRUE}.}
20
  \item{compress}{logical; whether to compress entries on the database.}
21
  \item{compress}{logical; whether to compress entries on the database.}
-
 
22
  \item{set.install.dir}{character or null; if not null, set installation
-
 
23
    directory to this value before serializing internal data structures
-
 
24
    (for internal use, staged installation)}
21
}
25
}
22
\description{
26
\description{
23
  Tools for lazy loading of packages from a database.
27
  Tools for lazy loading of packages from a database.
24
}
28
}
25
\details{
29
\details{