viii Preface
Historical Context
Rcpp first appeared in 2005 as a (fairly small when compared to its current size)
contribution by Dominick Samperi to the RQuantLib package started by Eddel-
buettel in 2002 (Eddelbuettel and Nguyen 2012). Rcpp became a CRAN pack-
age in its own name in early 2006. Several releases (all provided by Samperi) fol-
lowed in quick succession under the name Rcpp. The package was then renamed to
RcppTemplate; several more releases followed during 2006 under the new name.
However, no new releases were made during 2007, 2008, or most of 2009. Follow-
ing a few updates in late 2009, the RcppTemplate package has since been archived
on CRAN for lack of active maintenance.
Given the continued use of the package, Eddelbuettel decided to revitalize it.
New releases, using the original name Rcpp, started in November 2008. These in-
cluded an improved build and distribution process, additional documentation, and
new functionality—while retaining the existing “classic Rcpp” interface. While not
described here, this API will continue to be provided and supported via the Rcpp-
Classic package (Eddelbuettel and Franc¸ois 2012c).
Reflecting evolving C++ coding standards (see Meyers 2005), Eddelbuettel and
Franc¸ois started a significant redesign of the code base in 2009. This added numer-
ous new features, many of which are described in the package via different vignettes.
This redesigned version of Rcpp (Eddelbuettel and Franc¸ois 2012a) has become
widely used with over ninety CRAN packages depending on it as of November
2012. It is also the version described in this book.
Rcpp continues to be under active development, and extensions are being added.
The content described here shall remain valid and supported.
Related Work
Integration of C++ and R has been addressed by several authors; the earliest pub-
lished reference is probably Bates and DebRoy (2001). The “Writing R Extensions”
manual (R Development Core Team 2012d) has also been mentioning C++ and R
integration since around that time. An unpublished paper by Java et al. (2007)ex-
presses several ideas that are close to some of our approaches, though not yet fully
fleshed out. The Rserve package (Urbanek 2003, 2012) acts as a socket server for
R. On the server side, Rserve translates R data structures into a binary serialization
format and uses TCP/IP for transfer. On the client side, objects are reconstructed as
instances of Java or C++ classes that emulate the structure of R objects.
The packages rcppbind (Liang 2008), RAbstraction (Armstrong 2009a), and
RObjects (Armstrong 2009b) are all implemented using C++ templates. None of
them have matured to the point of a CRAN release. CXXR (Runnalls 2009)ap-
proaches this topic from the other direction: its aim is to completely refactor R on
a stronger C++ foundation. CXXR is therefore concerned with all aspects of the
R interpreter, read-eval-print loop (REPL), and threading; object interchange be-