https://github.com/cran/Rcpp
Raw File
Tip revision: a5efaaa5edad752264a962eba18c2fe7b700f19e authored by Dirk Eddelbuettel and Romain Francois on 28 November 2010, 06:24:47 UTC
version 0.8.9
Tip revision: a5efaaa
Module.Rd
\name{Module}
\alias{Module}
\title{
Retrieves an Rcpp module
}
\description{
Retrieves an Rcpp module from a dynamic library, usually associated with a 
package.
}
\usage{
Module(module, PACKAGE = getPackageName(where), where = topenv(parent.frame()), mustStart = FALSE )
}
\arguments{
\item{module}{Name of the module, as declared in the \code{RCPP_MODULE} macro internally}
\item{PACKAGE}{Passed to \code{\link{getNativeSymbolInfo}}}
\item{where}{When the module is loaded, S4 classes are defined based on the 
	internal classes. This argument is passed to \code{\link{setClass}}
}
\item{mustStart}{TODO}
}
\value{
	An object of class \linkS4class{Module} collecting functions 
	and classes declared in the module. 
}
\keyword{programming}

back to top