The R Project SVN R

Rev

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

Rev 74504 Rev 75560
Line 1... Line 1...
1
% File src/library/base/man/base-internal.Rd
1
% File src/library/base/man/base-internal.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-2016 R Core Team
3
% Copyright 1995-2018 R Core Team
4
% Distributed under GPL 2 or later
4
% Distributed under GPL 2 or later
5
 
5
 
6
\name{base-internal}
6
\name{base-internal}
7
\alias{.subset}
7
\alias{.subset}
8
\alias{.subset2}
8
\alias{.subset2}
9
\alias{.getRequiredPackages}
9
\alias{.getRequiredPackages}
10
\alias{.getRequiredPackages2}
10
\alias{.getRequiredPackages2}
-
 
11
% removed for R 3.6.
11
\alias{testPlatformEquivalence}
12
%\alias{testPlatformEquivalence}
12
\alias{.isMethodsDispatchOn}
13
\alias{.isMethodsDispatchOn}
13
\alias{sys.save.image}
14
\alias{sys.save.image}
14
\alias{sys.load.image}
15
\alias{sys.load.image}
15
\alias{.row_names_info}
16
\alias{.row_names_info}
16
\alias{.set_row_names}
17
\alias{.set_row_names}
Line 71... Line 72...
71
.getRequiredPackages(file = "DESCRIPTION", lib.loc = NULL,
72
.getRequiredPackages(file = "DESCRIPTION", lib.loc = NULL,
72
                     quietly = FALSE, useImports = FALSE)
73
                     quietly = FALSE, useImports = FALSE)
73
.getRequiredPackages2(pkgInfo, quietly = FALSE, lib.loc = NULL,
74
.getRequiredPackages2(pkgInfo, quietly = FALSE, lib.loc = NULL,
74
                      useImports = FALSE)
75
                      useImports = FALSE)
75
 
76
 
76
testPlatformEquivalence(built, run)
77
%testPlatformEquivalence(built, run)
77
 
78
%
78
.isMethodsDispatchOn(onOff = NULL)
79
.isMethodsDispatchOn(onOff = NULL)
79
 
80
 
80
sys.load.image(name, quiet)
81
sys.load.image(name, quiet)
81
sys.save.image(name)
82
sys.save.image(name)
82
 
83
 
Line 177... Line 178...
177
  checks the versions of the packages found against the \code{Depends} field.
178
  checks the versions of the packages found against the \code{Depends} field.
178
 
179
 
179
  \code{.getRequiredPackages} is a wrapper to
180
  \code{.getRequiredPackages} is a wrapper to
180
  \code{.getRequiredPackages2} using a \file{DESCRIPTION} file.
181
  \code{.getRequiredPackages2} using a \file{DESCRIPTION} file.
181
 
182
 
182
  \code{testPlatformEquivalence} is used to test if a package with
183
%%   \code{testPlatformEquivalence} is used to test if a package with
183
  compiled code can safely be loaded into a build of \R, which it does by
184
%%   compiled code can safely be loaded into a build of \R, which it does by
184
  comparing their \sQuote{canonical} \code{"cpu-vendor-os"} descriptions.
185
%%   comparing their \sQuote{canonical} \code{"cpu-vendor-os"} descriptions.
185
  The default function omits the \code{vendor} part and allows small
186
%%   The default function omits the \code{vendor} part and allows small
186
  mismatches elsewhere.
187
%%   mismatches elsewhere.
187
 
188
 
188
  The function \code{.isMethodsDispatchOn()} returns \code{TRUE} if
189
  The function \code{.isMethodsDispatchOn()} returns \code{TRUE} if
189
  the S4 method dispatch has been turned on in the evaluator (usually by
190
  the S4 method dispatch has been turned on in the evaluator (usually by
190
  loading package \pkg{methods}).  It is meant for \R internal use only.
191
  loading package \pkg{methods}).  It is meant for \R internal use only.
191
 
192