Generate the skeleton of a package
signature(name = "ANY", list = "ANY")
Standard method. See package.skeleton
signature(name = "character", list = "CFunc")
Method for a single generated by cfunction
or cxxfunction
signature(name = "character", list = "CFuncList")
Method for a set functions generated by cfunction
or cxxfunction
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | ## Not run:
fx <- cxxfunction(signature(x = "integer", y = "numeric"),
"return ScalarReal( INTEGER(x)[0] * REAL(y)[0]);")
package.skeleton("foo", fx)
functions <- cxxfunction(list(ff = signature(),
gg = signature(x = "integer", y = "numeric")),
c("return R_NilValue ;",
"return ScalarReal(INTEGER(x)[0] * REAL(y)[0]);"))
package.skeleton("foobar", functions)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.