-
-
Notifications
You must be signed in to change notification settings - Fork 220
Expand file tree
/
Copy pathModule-class.Rd
More file actions
28 lines (27 loc) · 844 Bytes
/
Module-class.Rd
File metadata and controls
28 lines (27 loc) · 844 Bytes
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
27
28
\name{Module-class}
\Rdversion{1.1}
\docType{class}
\alias{Module-class}
\alias{$,Module-method}
\alias{prompt,Module-method}
\alias{show,Module-method}
\alias{initialize,Module-method}
\title{Rcpp modules}
\description{
Collection of internal c++ functions and classes exposed to R
}
\section{Objects from the Class}{
modules are created by the \code{link{Module}} function
}
\section{Methods}{
\describe{
\item{$}{\code{signature(x = "Module")}: extract a function or a class from the module. }
\item{prompt}{\code{signature(object = "Module")}: generates skeleton of a documentation for a Module. }
\item{show}{\code{signature(object = "Module")}: summary information about the module. }
\item{initialize}{\code{signature(.Object = "Module")}: ... }
}
}
\seealso{
The \code{\link{Module}} function
}
\keyword{classes}