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
Rcpp-package.Rd
\name{Rcpp-package}
\alias{Rcpp-package}
\alias{Rcpp}
\docType{package}
\title{R / C++ interface}
\description{The \pkg{Rcpp} package provides C++ classes that
  greatly facilitate interfacing C or C++ code in \R packages using
  the \code{.Call} interface provided by \R.
}
\section{Introduction}{
	\pkg{Rcpp} provides C++ classes to facilitate manipulation of a large 
	number of R data structures : vectors, functions, environments, ... 
	
	The "Rcpp-introduction" vignette gives an introduction on the package
}
\section{Usage for package building}{
	The "Rcpp-package" vignette documents how to use Rcpp in client packages.
}
\author{Dominick Samperi wrote the initial versions of Rcpp (and
  RcppTemplate) during 2005 and 2006.  Dirk Eddelbuettel made some
  additions, and became maintainer in 2008. Dirk Eddelbuettel and Romain
  Francois have been extending Rcpp since 2009.
}
\examples{
\dontrun{                  
# introduction to Rcpp
vignette( "Rcpp-introduction" )	

# information on how to build a package that uses Rcpp
vignette( "Rcpp-package" )	
}
}
\keyword{programming}
\keyword{interface}
back to top