[go: up one dir, main page]

File: Module.Rd

package info (click to toggle)
rcpp 0.11.3-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 9,948 kB
  • ctags: 16,427
  • sloc: ansic: 42,692; cpp: 34,078; makefile: 32; sh: 21
file content (26 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
\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 = , where = , mustStart =  )
}
\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}