Rcpp 0.6.4
[This article was first published on Thinking inside the box , and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
A new maintenance version of Rcpp (now at 0.6.4)
was just pushed to CRAN and has been
uploaded to Debian. Rcpp is a set of
utility classes that provide interfaces for transferring the major R data
types to C++ and back which makes it easier to extend R with dynamically
loadable code written in C or C++.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
This version changes how use the std
namespace: all usage is now
properly prefixed. Likewise, we now define R_NO_REMAP
to not
let R define utility functions as length()
or
error()
which occassionally creates trouble with other include
files — so now use the more explicit forms Rf_length()
,
Rf_error()
etc. Also, starting from this release, C++ class
documentation created by Doxygen is included; it can also be seen from my box
as both browsable
html and a pdf file.
Lastly, this version also adds a minor correction to the Windows build
(spotted by Uwe and Simon).
To leave a comment for the author, please follow the link and comment on their blog: Thinking inside the box .
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.