|
1 | 1 | \name{loadRcppModules-deprecated} |
2 | 2 | \alias{loadRcppModules} |
3 | 3 | \title{ |
4 | | -LoadsRcppmodulesonpackagestartup |
| 4 | +LoadsRcppmodulesonpackagestartup |
5 | 5 | } |
6 | 6 | \description{ |
7 | | - \emph{Note:}Asofrelease0.16.5,thisfunctionisdeprecated; |
| 7 | + \emph{Note:}Asofrelease0.12.5,thisfunctionisdeprecated; |
8 | 8 | \code{\link{loadModule}}shouldbeusedinstead. |
9 | | -
|
10 | | -FunctiontosimplifyloadingRcppmodulescontainedinapackage. |
11 | | -Thisfunctionmustbecalledfromthe \code{.onLoad}functionofapackage. |
12 | | -Itusesthe \code{RcppModules}fieldofthepackage \code{DESCRIPTION}file |
13 | | -toquerythenamesofthemodulesthatthepackageshouldexport,loadseachmodule, |
14 | | -and \code{\link{populate}}eachmoduleintothepackageNAMESPACE. |
| 9 | + |
| 10 | +FunctiontosimplifyloadingRcppmodulescontainedinapackage. |
| 11 | +Thisfunctionmustbecalledfromthe \code{.onLoad}functionofapackage. |
| 12 | +Itusesthe \code{RcppModules}fieldofthepackage \code{DESCRIPTION}file |
| 13 | +toquerythenamesofthemodulesthatthepackageshouldexport,loadseachmodule, |
| 14 | +and \code{\link{populate}}eachmoduleintothepackageNAMESPACE. |
15 | 15 | } |
16 | 16 | \usage{ |
17 | | -loadRcppModules(direct=TRUE) |
| 17 | +loadRcppModules(direct=TRUE) |
18 | 18 | } |
19 | 19 | \arguments{ |
20 | | -\item{direct}{if \code{TRUE}thecontentofthemoduleisexposedinthe |
21 | | -namespace.Otherwise,themoduleisexposed. } |
| 20 | + \item{direct}{if \code{TRUE}thecontentofthemoduleisexposedinthe |
| 21 | +namespace.Otherwise,themoduleisexposed. } |
22 | 22 | } |
23 | 23 | \seealso{ |
24 | | -\code{\link{populate}}, \code{\link{loadModule}} |
| 24 | + \code{\link{populate}}, \code{\link{loadModule}} |
25 | 25 | } |
26 | 26 | \keyword{interface} |
27 | | - |