| vendor | R Documentation |
Vendors armadillo4r into your package by copying the armadillo4r
headers into the inst/include folder of your package and adding
'armadillo4r version: XYZ' to the top of the files, where XYZ is the version of
armadillo4r currently installed on your machine.
Note: vendoring places the responsibility of updating the code on
you. Bugfixes and new features in armadillo4r will not be available for your
code until you run cpp_vendor() again.
vendor(path = NULL)
path |
The directory with the vendored headers. It is recommended to use
|
The path to the vendored code (invisibly).
# create a new directory
dir <- paste0(tempdir(), "/", gsub("\\s+|[[:punct:]]", "", Sys.time()))
dir.create(dir, recursive = TRUE)
# vendor the armadillo4r headers into the directory
vendor(dir)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.