mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 01:26:39 -04:00
Commit b7f05445c0
has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner)
13 lines
617 B
Text
13 lines
617 B
Text
The Rcpp package provides C++ classes that greatly facilitate
|
|
interfacing C or C++ code in R packages using the .Call() interface
|
|
provided by R.
|
|
|
|
Rcpp provides matching C++ classes for a large number of basic R
|
|
data types. Hence, a package author can keep his data in normal R
|
|
data structures without having to worry about translation or
|
|
transferring to C++. At the same time, the data structures can be
|
|
accessed as easily at the C++ level, and used in the normal manner.
|
|
|
|
The mapping of data types works in both directions. It is as
|
|
straightforward to pass data from R to C++, as it is it return data
|
|
from C++ to R.
|