File: Module-class.Rd

package info (click to toggle)
rcpp 1.0.6-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 11,364 kB
  • sloc: ansic: 43,980; cpp: 40,120; sh: 53; makefile: 2
file content (28 lines) | stat: -rw-r--r-- 844 bytes parent folder | download | duplicates (8)
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}