@@ -10,22 +10,22 @@ types are supported (vectors, functions, environment, etc ...) and each
1010type is mapped to a dedicated class. For example, numeric vectors are
1111represented as instances of the Rcpp::NumericVector class, environments are
1212represented as instances of Rcpp::Environment, functions are represented as
13- Rcpp::Function, etc ...
13+ Rcpp::Function, etc ...
1414The
1515[ Rcpp-introduction] ( https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-introduction.pdf )
1616vignette (also published as a [ JSS paper] ( http://www.jstatsoft.org/v40/i08/ ) ) provides a good
1717entry point to Rcpp as do the [ Rcpp website] ( http://www.rcpp.org ) , the
18- [ Rcpp page] ( http://dirk.eddelbuettel.com/code/rcpp.html ) and the
18+ [ Rcpp page] ( http://dirk.eddelbuettel.com/code/rcpp.html ) and the
1919[ Rcpp Gallery] ( http://gallery.rcpp.org ) . Full documentation
2020is provided by the [ Rcpp book] ( http://www.rcpp.org/book/ ) .
2121
22- Conversion from C++ to R and back is driven by the templates ` Rcpp::wrap `
22+ Conversion from C++ to R and back is driven by the templates ` Rcpp::wrap `
2323and ` Rcpp::as ` which are highly flexible and extensible, as documented
2424in the [ Rcpp-extending] ( https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-extending.pdf ) vignette.
2525
26- Rcpp also provides Rcpp modules, a framework that allows exposing
26+ Rcpp also provides Rcpp modules, a framework that allows exposing
2727C++ functions and classes to the R level. The [ Rcpp-modules] ( https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-modules.pdf ) vignette
28- details the current set of features of Rcpp-modules.
28+ details the current set of features of Rcpp-modules.
2929
3030Rcpp includes a concept called Rcpp sugar that brings many R functions
3131into C++. Sugar takes advantage of lazy evaluation and expression templates
@@ -39,42 +39,42 @@ required to invoke them. Attributes are intended to facilitate both
3939interactive use of C++ within R sessions as well as to support R
4040package development. Attributes are built on top of Rcpp modules and
4141their implementation is based on previous work in the inline package.
42- See the [ Rcpp-atttributes] ( https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-attributes.pdf ) vignettes for more details.
42+ See the [ Rcpp-atttributes] ( https://cran.r-project.org/package=Rcpp/vignettes/Rcpp-attributes.pdf ) vignettes for more details.
4343
44- ### Documentation
44+ ### Documentation
4545
46- The package ships with nine pdf vignettes.
46+ The package ships with nine pdf vignettes.
4747
48- Additional documentation is available via the
48+ Additional documentation is available via the
4949[ JSS paper] ( http://www.jstatsoft.org/v40/i08/ ) by Eddelbuettel and
50- Francois (2011, JSS) paper (corresponding to the 'intro' vignette)
51- and the [ book] ( http://www.rcpp.org/book ) by Eddelbuettel (2013, Springer);
50+ Francois (2011, JSS) paper (corresponding to the 'intro' vignette)
51+ and the [ book] ( http://www.rcpp.org/book ) by Eddelbuettel (2013, Springer);
5252see 'citation("Rcpp")' for details.
5353
5454### Examples
5555
5656The [ Rcpp Gallery] ( http://gallery.rcpp.org ) showcases over one hundred fully
5757documented and working examples.
5858
59- A number of examples are included as are 1394 unit tests in 606 unit
59+ A number of examples are included as are 1429 unit tests in 618 unit
6060test functions provide additional usage examples.
6161
6262An earlier version of Rcpp, containing what we now call the 'classic Rcpp
6363API' was written during 2005 and 2006 by Dominick Samperi. This code has
6464been factored out of Rcpp into the package RcppClassic, and it is still
65- available for code relying on the older interface. New development should
65+ available for code relying on the older interface. New development should
6666always use this Rcpp package instead.
6767
68- Other usage examples are provided by packages using Rcpp. As of March 2018,
69- there are 1309 [ CRAN] ( https://cran.r-project.org ) packages using Rcpp, a further
68+ Other usage examples are provided by packages using Rcpp. As of July 2018,
69+ there are 1402 [ CRAN] ( https://cran.r-project.org ) packages using Rcpp, a further
707091 [ BioConductor] ( http://www.bioconductor.org ) packages in its current release
7171as well as an unknown number of GitHub, Bitbucket, R-Forge, ... repositories
7272using Rcpp. All these packages provide usage examples for Rcpp.
7373
7474### Installation
7575
7676Released and tested versions of Rcpp are available via the
77- [ CRAN] ( https://cran.r-project.org ) network, and can be installed from within R via
77+ [ CRAN] ( https://cran.r-project.org ) network, and can be installed from within R via
7878
7979``` R
8080install.packages(" Rcpp" )
@@ -95,7 +95,7 @@ if your question has been asked before.
9595
9696Another option is to use
9797[ StackOverflow and its 'rcpp' tag] ( http://stackoverflow.com/questions/tagged/rcpp ) .
98- Search functionality (use ` rcpp ` in squared brackets as in
98+ Search functionality (use ` rcpp ` in squared brackets as in
9999[[ rcpp] my question terms] ( https://stackoverflow.com/search?q=[rcpp]%20my%20question%20terms )
100100to tag the query) is very valuable as many questions have indeed been asked, and
101101answered, before.
@@ -108,7 +108,7 @@ previous issues can be searched as well.
108108### Authors
109109
110110Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
111- Nathan Russell, Doug Bates, and John Chambers
111+ Nathan Russell, Doug Bates, and John Chambers
112112
113113### License
114114
0 commit comments